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.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/third_party/wiredtiger/test/suite/test_timestamp09.py b/src/third_party/wiredtiger/test/suite/test_timestamp09.py
index 9b7d88bf64e..6fbb15e38b8 100644
--- a/src/third_party/wiredtiger/test/suite/test_timestamp09.py
+++ b/src/third_party/wiredtiger/test/suite/test_timestamp09.py
@@ -37,7 +37,7 @@ def timestamp_str(t):
return '%x' % t
class test_timestamp09(wttest.WiredTigerTestCase, suite_subprocess):
- tablename = 'test_timestamp08'
+ tablename = 'test_timestamp09'
uri = 'table:' + tablename
def test_timestamp_api(self):
@@ -55,7 +55,7 @@ class test_timestamp09(wttest.WiredTigerTestCase, suite_subprocess):
# In a single transaction it is illegal to set a commit timestamp
# older than the first commit timestamp used for this transaction.
- # Check both timestamp_transaction and commit_transaction API.
+ # Check both timestamp_transaction and commit_transaction APIs.
self.session.begin_transaction()
self.session.timestamp_transaction(
'commit_timestamp=' + timestamp_str(3))
@@ -77,7 +77,7 @@ class test_timestamp09(wttest.WiredTigerTestCase, suite_subprocess):
'/older than the first commit timestamp/')
# Commit timestamp >= Oldest timestamp
- # Check both timestamp_transaction and commit_transaction API.
+ # Check both timestamp_transaction and commit_transaction APIs.
self.session.begin_transaction()
c[3] = 3
self.session.commit_transaction(
@@ -131,7 +131,7 @@ class test_timestamp09(wttest.WiredTigerTestCase, suite_subprocess):
'/oldest timestamp 0*6 must not be later than stable timestamp 0*5/')
# Commit timestamp >= Stable timestamp.
- # Check both timestamp_transaction and commit_transaction API.
+ # Check both timestamp_transaction and commit_transaction APIs.
# Oldest and stable timestamp are set to 5 at the moment.
self.conn.set_timestamp('stable_timestamp=' + timestamp_str(6))
self.session.begin_transaction()