Skip to content

Commit 983ffb6

Browse files
committed
Correct wrongly written check
1 parent eaa7cfb commit 983ffb6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Orm/Xtensive.Orm.Tests/Configuration/TypeRegistryTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public void ContiniousRegistrationTest()
9191
typeRegistry.Register(typeof (A).Assembly, "Xtensive.Orm.Tests.RegistryModel1");
9292
long amount = typeRegistry.Count;
9393
typeRegistry.Register(typeof (A).Assembly, "Xtensive.Orm.Tests.RegistryModel2");
94-
Assert.That(typeRegistry.Count, Is.LessThan(amount));
94+
Assert.That(amount, Is.LessThan(typeRegistry.Count));
9595
}
9696

9797
[Test]

0 commit comments

Comments
 (0)