Browse Source

Fix intermittent test failures introduced by accidental possible inter-test dependency that caused a test to fail when a different (moved over from the refactor) test ran before it.

pull/1594/head
Jeremy Koritzinsky 8 years ago
parent
commit
e3686ab10d
  1. 2
      tests/Avalonia.Base.UnitTests/Data/Core/ExpressionObserverTests_AttachedProperty.cs

2
tests/Avalonia.Base.UnitTests/Data/Core/ExpressionObserverTests_AttachedProperty.cs

@ -127,7 +127,7 @@ namespace Avalonia.Base.UnitTests.Data.Core
private static class Owner
{
public static readonly AttachedProperty<string> FooProperty =
AvaloniaProperty.RegisterAttached<AvaloniaObject, string>(
AvaloniaProperty.RegisterAttached<Class1, string>(
"Foo",
typeof(Owner),
defaultValue: "foo");

Loading…
Cancel
Save