Skip to content

Commit 9ad56e2

Browse files
fixup! Allow configuring auto-join transaction globally
Remove undue negation
1 parent 8e04274 commit 9ad56e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/NHibernate.Test/SystemTransactions/AutoJoinSettingFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public void CheckTransactionJoined()
3636
{
3737
Assert.That(
3838
s.GetSessionImplementation().TransactionContext,
39-
_autoJoinTransaction != false ? Is.Not.Null : Is.Null);
39+
_autoJoinTransaction == false ? Is.Null : Is.Not.Null);
4040
}
4141
}
4242

0 commit comments

Comments
 (0)