File tree Expand file tree Collapse file tree
test/Compze.Tests.Integration/CQRS Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -421,15 +421,15 @@ public void Concurrent_read_only_access_to_taggregate_history_can_occur_in_paral
421421 using var runner = new TestingTaskRunner ( 5 . Seconds ( ) ) ;
422422 runner . Run ( ReadUserHistory , ReadUserHistory ) ;
423423
424- readGate . TryAwaitQueueLengthEqualTo ( 2 , WaitTimeout . Milliseconds ( 100 ) ) . Must ( ) . BeTrue ( ) ;
424+ readGate . TryAwaitQueueLengthEqualTo ( 2 ) . Must ( ) . BeTrue ( ) ;
425425 readGate . Open ( ) ;
426+ return ;
426427
427- void ReadUserHistory ( ) =>
428- UseInTransactionalScope ( session =>
429- {
430- ( ( ITeventStoreReader ) session ) . GetHistory ( user . Id ) ;
431- readGate . AwaitPassThrough ( ) ;
432- } ) ;
428+ void ReadUserHistory ( ) => UseInTransactionalScope ( session =>
429+ {
430+ ( ( ITeventStoreReader ) session ) . GetHistory ( user . Id ) ;
431+ readGate . AwaitPassThrough ( ) ;
432+ } ) ;
433433 }
434434
435435 [ PCT ]
You can’t perform that action at this time.
0 commit comments