fixed copy&paste error

This commit is contained in:
Faryan Rezagholi
2019-02-18 19:14:12 +01:00
parent 14deac00f6
commit 56ba332dc5
2 changed files with 3 additions and 3 deletions

View File

@@ -408,7 +408,7 @@ namespace mRemoteNGTests.Connection
{
var wasCalled = false;
_testAbstractConnectionInfoData.PropertyChanged += (sender, args) => wasCalled = true;
_testAbstractConnectionInfoData.Favorite = true;
_testAbstractConnectionInfoData.UserField = "a";
Assert.That(wasCalled, Is.True);
}
@@ -417,7 +417,7 @@ namespace mRemoteNGTests.Connection
{
var wasCalled = false;
_testAbstractConnectionInfoData.PropertyChanged += (sender, args) => wasCalled = true;
_testAbstractConnectionInfoData.UserField = "a";
_testAbstractConnectionInfoData.Favorite = true;
Assert.That(wasCalled, Is.True);
}

View File

@@ -22,4 +22,4 @@
/// </summary>
public bool Favorite { get; set; }
}
}
}