summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/test/suite/test_timestamp09.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/test/suite/test_timestamp09.py')
-rw-r--r--src/third_party/wiredtiger/test/suite/test_timestamp09.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/third_party/wiredtiger/test/suite/test_timestamp09.py b/src/third_party/wiredtiger/test/suite/test_timestamp09.py
index 05aa86e9398..1a813c31ff5 100644
--- a/src/third_party/wiredtiger/test/suite/test_timestamp09.py
+++ b/src/third_party/wiredtiger/test/suite/test_timestamp09.py
@@ -107,7 +107,8 @@ class test_timestamp09(wttest.WiredTigerTestCase, suite_subprocess):
# Oldest timestamp is 3 at the moment, trying to set it to an earlier
# timestamp is a no-op.
self.conn.set_timestamp('oldest_timestamp=' + self.timestamp_str(1))
- self.assertTimestampsEqual(self.conn.query_timestamp('get=oldest'), self.timestamp_str(3))
+ self.assertTimestampsEqual(\
+ self.conn.query_timestamp('get=oldest_timestamp'), self.timestamp_str(3))
self.conn.set_timestamp('oldest_timestamp=' + self.timestamp_str(3) +
',stable_timestamp=' + self.timestamp_str(3))
@@ -115,7 +116,8 @@ class test_timestamp09(wttest.WiredTigerTestCase, suite_subprocess):
# Stable timestamp is 5 at the moment, trying to set it to an earlier
# timestamp is a no-op.
self.conn.set_timestamp('stable_timestamp=' + self.timestamp_str(4))
- self.assertTimestampsEqual(self.conn.query_timestamp('get=stable'), self.timestamp_str(5))
+ self.assertTimestampsEqual(\
+ self.conn.query_timestamp('get=stable_timestamp'), self.timestamp_str(5))
self.conn.set_timestamp('oldest_timestamp=' + self.timestamp_str(5))
self.assertRaisesWithMessage(wiredtiger.WiredTigerError,