Skip to content

Commit a4d93c4

Browse files
committed
Fix NonPublicGetterTest
1 parent 6342b37 commit a4d93c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Orm/Xtensive.Orm.Tests/Linq/MemberCompilerProviderTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ public void NonPublicGetterTest()
189189
.GetProperty("InternalProperty", BindingFlags.Instance | BindingFlags.NonPublic);
190190
Assert.IsNotNull(property);
191191
var result = provider.GetCompiler(property);
192-
Assert.IsNull(result);
192+
Assert.IsTrue(result.IsNull);
193193
}
194194

195195
[Test]

0 commit comments

Comments
 (0)