File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -331,9 +331,6 @@ public void UnaryMinusBeforeParenthesesHandledCorrectly()
331
331
int actualWorkaround = s . CreateQuery ( "select -1*(1+1) from Animal as h" )
332
332
. List < int > ( ) . Single ( ) ;
333
333
Assert . That ( actualWorkaround , Is . EqualTo ( - 2 ) ) ;
334
-
335
- s . CreateQuery ( "delete from Animal" ) . ExecuteUpdate ( ) ;
336
- txn . Commit ( ) ;
337
334
}
338
335
}
339
336
}
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ public void CreateUpdateReadDelete()
48
48
Assert . IsTrue ( initVersion . HasValue ) ;
49
49
tx . Commit ( ) ;
50
50
}
51
- Thread . Sleep ( 100 ) ; // Only to be secure that next modification have a different version
51
+ Thread . Sleep ( 1100 ) ; // Ensure version increment (some dialects lack fractional seconds).
52
52
using ( tx = ss . BeginTransaction ( ) )
53
53
{
54
54
doc . Text = "blah blah blah .... blah" ;
You can’t perform that action at this time.
0 commit comments