Skip to content

Commit fa0c987

Browse files
authored
Merge pull request #313 from wprzytula/make-flaky-test-less-flaky
integration: increase timestamp tolerance in Timestamps test
2 parents 225ea73 + a5ccfdf commit fa0c987

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/src/integration/tests/test_basics.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ CASSANDRA_INTEGRATION_TEST_F(BasicsTests, Timestamps) {
7373

7474
// Validate the timestamps
7575
ASSERT_NE(timestamp_1, timestamp_2);
76-
ASSERT_LT(timestamp_2 - timestamp_1 - BigInteger(pause_duration * 1000), BigInteger(150000));
76+
ASSERT_LT(timestamp_2 - timestamp_1 - BigInteger(pause_duration * 1000), BigInteger(500000));
7777
}
7878

7979
/**

0 commit comments

Comments
 (0)