summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/test/suite/test_timestamp13.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/test/suite/test_timestamp13.py')
-rw-r--r--src/third_party/wiredtiger/test/suite/test_timestamp13.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/third_party/wiredtiger/test/suite/test_timestamp13.py b/src/third_party/wiredtiger/test/suite/test_timestamp13.py
index 0a09864c22e..2bb121391ac 100644
--- a/src/third_party/wiredtiger/test/suite/test_timestamp13.py
+++ b/src/third_party/wiredtiger/test/suite/test_timestamp13.py
@@ -47,7 +47,6 @@ class test_timestamp13(wttest.WiredTigerTestCase, suite_subprocess):
])
conn_config = 'log=(enabled)'
- session_config = 'isolation=snapshot'
def test_degenerate_timestamps(self):
self.session.create(self.uri,
@@ -82,7 +81,7 @@ class test_timestamp13(wttest.WiredTigerTestCase, suite_subprocess):
self.session.create(self.uri,
'key_format=i,value_format=i' + self.extra_config)
- self.session.begin_transaction('isolation=snapshot')
+ self.session.begin_transaction()
self.session.timestamp_transaction('read_timestamp=10')
self.assertTimestampsEqual(
self.session.query_timestamp('get=read'), '10')
@@ -112,7 +111,7 @@ class test_timestamp13(wttest.WiredTigerTestCase, suite_subprocess):
# Rounding to the oldest timestamp will allow the stale read_timestamp
# to succeed. The follow-up call to get the read timestamp returns the
# chosen read timestamp.
- self.session.begin_transaction('isolation=snapshot,roundup_timestamps=(read=true)')
+ self.session.begin_transaction('roundup_timestamps=(read=true)')
self.session.timestamp_transaction('read_timestamp=5')
self.assertTimestampsEqual(
self.session.query_timestamp('get=read'), '10')