From 8b7fe418d47a3d8e4bf47e257a4b368e805759d8 Mon Sep 17 00:00:00 2001 From: Michael Lamers Date: Mon, 6 Aug 2018 19:15:31 +0200 Subject: [PATCH] MvvmBehavior: TestResult is null in the beginning --- src/net/Qml.Net.Tests/Qml/MvvmInteropBehaviorTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/net/Qml.Net.Tests/Qml/MvvmInteropBehaviorTests.cs b/src/net/Qml.Net.Tests/Qml/MvvmInteropBehaviorTests.cs index 4653a5e3..64036b23 100644 --- a/src/net/Qml.Net.Tests/Qml/MvvmInteropBehaviorTests.cs +++ b/src/net/Qml.Net.Tests/Qml/MvvmInteropBehaviorTests.cs @@ -35,7 +35,7 @@ namespace Qml.Net.Tests.Qml ViewModel.CustomNotifyOnlyIntProperty = newValue; } - public bool? TestResult { get; set; } = false; + public bool? TestResult { get; set; } = null; } public class ViewModel : INotifyPropertyChanged