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 37
37
import static org .hamcrest .Matchers .containsString ;
38
38
import static org .hamcrest .Matchers .equalTo ;
39
39
import static org .hamcrest .Matchers .greaterThan ;
40
+ import static org .hamcrest .Matchers .greaterThanOrEqualTo ;
40
41
import static org .hamcrest .Matchers .notNullValue ;
41
42
import static org .junit .Assert .assertEquals ;
42
43
import static org .junit .Assert .assertFalse ;
@@ -87,8 +88,8 @@ public void shouldContainTimeInformation()
87
88
// Then
88
89
if ( version ( summary .server ().version () ).greaterThanOrEqual ( v3_1_0 ) )
89
90
{
90
- assertThat ( summary .resultAvailableAfter ( TimeUnit .MILLISECONDS ), greaterThan ( 0L ) );
91
- assertThat ( summary .resultConsumedAfter ( TimeUnit .MILLISECONDS ), greaterThan ( 0L ) );
91
+ assertThat ( summary .resultAvailableAfter ( TimeUnit .MILLISECONDS ), greaterThanOrEqualTo ( 0L ) );
92
+ assertThat ( summary .resultConsumedAfter ( TimeUnit .MILLISECONDS ), greaterThanOrEqualTo ( 0L ) );
92
93
}
93
94
else
94
95
{
You can’t perform that action at this time.
0 commit comments