File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
driver/src/test/java/org/neo4j/driver/v1/integration Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 38
38
import static org .hamcrest .Matchers .containsString ;
39
39
import static org .hamcrest .Matchers .equalTo ;
40
40
import static org .hamcrest .Matchers .greaterThan ;
41
+ import static org .hamcrest .Matchers .greaterThanOrEqualTo ;
41
42
import static org .hamcrest .Matchers .notNullValue ;
42
43
import static org .hamcrest .junit .MatcherAssert .assertThat ;
43
44
import static org .junit .jupiter .api .Assertions .assertEquals ;
@@ -88,8 +89,8 @@ void shouldContainTimeInformation()
88
89
ServerVersion serverVersion = ServerVersion .version ( summary .server ().version () );
89
90
if ( STATEMENT_RESULT_TIMINGS .availableIn ( serverVersion ) )
90
91
{
91
- assertThat ( summary .resultAvailableAfter ( TimeUnit .MILLISECONDS ), greaterThan ( 0L ) );
92
- assertThat ( summary .resultConsumedAfter ( TimeUnit .MILLISECONDS ), greaterThan ( 0L ) );
92
+ assertThat ( summary .resultAvailableAfter ( TimeUnit .MILLISECONDS ), greaterThanOrEqualTo ( 0L ) );
93
+ assertThat ( summary .resultConsumedAfter ( TimeUnit .MILLISECONDS ), greaterThanOrEqualTo ( 0L ) );
93
94
}
94
95
else
95
96
{
You can’t perform that action at this time.
0 commit comments