Browse Source

Fix incorrect assert in RangeBaseTests.

pull/856/head
Jeremy Koritzinsky 9 years ago
parent
commit
4469bafe28
  1. 2
      tests/Avalonia.Controls.UnitTests/Primitives/RangeBaseTests.cs

2
tests/Avalonia.Controls.UnitTests/Primitives/RangeBaseTests.cs

@ -151,7 +151,7 @@ namespace Avalonia.Controls.UnitTests.Primitives
//here in real life stack overflow exception is thrown issue #855 and #824
target.Value = 51.001;
Assert.Equal(3, viewModel.SetterInvokedCount);
Assert.Equal(2, viewModel.SetterInvokedCount);
double expected = 51;

Loading…
Cancel
Save