@@ -15,7 +15,7 @@ public override string BugNumber
15
15
[ Test ]
16
16
public void ExceptionsInBeforeTransactionCompletionAbortTransaction ( )
17
17
{
18
- Assert . IsFalse ( sessions . Settings . IsInterceptorsBeforeTransactionCompletionIgnoreExceptions ) ;
18
+ Assert . IsFalse ( sessions . Settings . IsInterceptorsBeforeTransactionCompletionIgnoreExceptionsEnabled ) ;
19
19
20
20
var c = new C { ID = 1 , Value = "value" } ;
21
21
@@ -39,7 +39,7 @@ public void ExceptionsInBeforeTransactionCompletionAbortTransaction()
39
39
[ Test ]
40
40
public void ExceptionsInSynchronizationBeforeTransactionCompletionAbortTransaction ( )
41
41
{
42
- Assert . IsFalse ( sessions . Settings . IsInterceptorsBeforeTransactionCompletionIgnoreExceptions ) ;
42
+ Assert . IsFalse ( sessions . Settings . IsInterceptorsBeforeTransactionCompletionIgnoreExceptionsEnabled ) ;
43
43
44
44
var c = new C { ID = 1 , Value = "value" } ;
45
45
@@ -80,7 +80,7 @@ protected override void Configure(Configuration configuration)
80
80
[ Test ]
81
81
public void ExceptionsInBeforeTransactionCompletionAreIgnored ( )
82
82
{
83
- Assert . IsTrue ( sessions . Settings . IsInterceptorsBeforeTransactionCompletionIgnoreExceptions ) ;
83
+ Assert . IsTrue ( sessions . Settings . IsInterceptorsBeforeTransactionCompletionIgnoreExceptionsEnabled ) ;
84
84
85
85
var c = new C { ID = 1 , Value = "value" } ;
86
86
@@ -108,7 +108,7 @@ public void ExceptionsInBeforeTransactionCompletionAreIgnored()
108
108
[ Test ]
109
109
public void ExceptionsInSynchronizationBeforeTransactionCompletionAreIgnored ( )
110
110
{
111
- Assert . IsTrue ( sessions . Settings . IsInterceptorsBeforeTransactionCompletionIgnoreExceptions ) ;
111
+ Assert . IsTrue ( sessions . Settings . IsInterceptorsBeforeTransactionCompletionIgnoreExceptionsEnabled ) ;
112
112
113
113
var c = new C { ID = 1 , Value = "value" } ;
114
114
0 commit comments