summaryrefslogtreecommitdiff
path: root/test/suite/test_cursor01.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/test_cursor01.py')
-rw-r--r--test/suite/test_cursor01.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/suite/test_cursor01.py b/test/suite/test_cursor01.py
index 41b017aa882..99bdb6182c7 100644
--- a/test/suite/test_cursor01.py
+++ b/test/suite/test_cursor01.py
@@ -99,6 +99,7 @@ class test_cursor01(wttest.WiredTigerTestCase):
self.pr('creating cursor')
cursor = self.session.open_cursor(tablearg, None, None)
self.assertCursorHasNoKeyValue(cursor)
+ self.assertEqual(cursor.uri, tablearg)
for i in range(0, self.nentries):
cursor[self.genkey(i)] = self.genvalue(i)