summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/test/suite/test_assert06.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/test/suite/test_assert06.py')
-rw-r--r--src/third_party/wiredtiger/test/suite/test_assert06.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/third_party/wiredtiger/test/suite/test_assert06.py b/src/third_party/wiredtiger/test/suite/test_assert06.py
index 4ae45b6dd61..ad2f6c345b1 100644
--- a/src/third_party/wiredtiger/test/suite/test_assert06.py
+++ b/src/third_party/wiredtiger/test/suite/test_assert06.py
@@ -50,8 +50,8 @@ class test_assert06(wttest.WiredTigerTestCase, suite_subprocess):
def test_timestamp_alter(self):
base = 'assert06'
uri = 'file:' + base
- cfg_on = 'assert=(durable_timestamp=key_consistent)'
- cfg_off = 'assert=(durable_timestamp=none)'
+ cfg_on = 'write_timestamp_usage=key_consistent,assert=(write_timestamp=on)'
+ cfg_off = 'write_timestamp_usage=never,assert=(write_timestamp=off)'
msg_ooo='/out of order/'
msg_usage='/used inconsistently/'
@@ -189,7 +189,7 @@ class test_assert06(wttest.WiredTigerTestCase, suite_subprocess):
# That checking will verify any individual key is always or never
# used with a timestamp. And if it is used with a timestamp that
# the timestamps are in increasing order for that key.
- self.session.create(uri, 'key_format=S,value_format=S,assert=(durable_timestamp=key_consistent)')
+ self.session.create(uri, 'key_format=S,value_format=S,write_timestamp_usage=key_consistent,assert=(write_timestamp=on)')
# Insert a data item at timestamp 2.
c = self.session.open_cursor(uri)