summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/test/suite/test_timestamp19.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/test/suite/test_timestamp19.py')
-rw-r--r--src/third_party/wiredtiger/test/suite/test_timestamp19.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/third_party/wiredtiger/test/suite/test_timestamp19.py b/src/third_party/wiredtiger/test/suite/test_timestamp19.py
index 740fba4fdb2..a9ed894ae64 100644
--- a/src/third_party/wiredtiger/test/suite/test_timestamp19.py
+++ b/src/third_party/wiredtiger/test/suite/test_timestamp19.py
@@ -102,13 +102,16 @@ class test_timestamp19(wttest.WiredTigerTestCase):
# The oldest timestamp on recovery is 40. Trying to set it earlier is a no-op.
self.conn.set_timestamp('oldest_timestamp=' + self.timestamp_str(10))
- self.assertTimestampsEqual(self.conn.query_timestamp('get=oldest'), self.timestamp_str(40))
+ self.assertTimestampsEqual(\
+ self.conn.query_timestamp('get=oldest_timestamp'), self.timestamp_str(40))
# Move the oldest and stable timestamps to 70.
self.conn.set_timestamp('oldest_timestamp=' + self.timestamp_str(70) +
', stable_timestamp=' + self.timestamp_str(70))
- self.assertTimestampsEqual(self.conn.query_timestamp('get=oldest'), self.timestamp_str(70))
- self.assertTimestampsEqual(self.conn.query_timestamp('get=stable'), self.timestamp_str(70))
+ self.assertTimestampsEqual(\
+ self.conn.query_timestamp('get=oldest_timestamp'), self.timestamp_str(70))
+ self.assertTimestampsEqual(\
+ self.conn.query_timestamp('get=stable_timestamp'), self.timestamp_str(70))
if __name__ == '__main__':
wttest.run()