summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/test/suite/test_cursor01.py
diff options
context:
space:
mode:
authorAlex Gorrod <alexander.gorrod@mongodb.com>2017-06-19 21:03:12 +0000
committerAlex Gorrod <alexander.gorrod@mongodb.com>2017-06-19 21:03:12 +0000
commit2c52d133f77f027378e5e04752529d63336faa92 (patch)
treea69e637aeed6cd38c306540f0a084cb0d89d864a /src/third_party/wiredtiger/test/suite/test_cursor01.py
parente136698c6caa4f45aaf9e2da02ee98f82428472f (diff)
downloadmongo-2c52d133f77f027378e5e04752529d63336faa92.tar.gz
Import wiredtiger: 89049da5f36d57585cccac275382f7fe8fc472e2 from branch mongodb-3.4
ref: 04a1578300..89049da5f3 for: 3.4.6 WT-3219 Make the clang-analyzer job fail when lint is introduced WT-3297 support the gcc/clang -fvisibility=hidden flag WT-3327 Checkpoints can hang if time runs backward WT-3331 Test format aborted due to time rollback WT-3362 Cursor opens should never block for the duration of a checkpoint WT-3369 WT_CURSOR->uri should always match the URI used to open the cursor
Diffstat (limited to 'src/third_party/wiredtiger/test/suite/test_cursor01.py')
-rw-r--r--src/third_party/wiredtiger/test/suite/test_cursor01.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/third_party/wiredtiger/test/suite/test_cursor01.py b/src/third_party/wiredtiger/test/suite/test_cursor01.py
index 8c66042eec0..2a33b15dccc 100644
--- a/src/third_party/wiredtiger/test/suite/test_cursor01.py
+++ b/src/third_party/wiredtiger/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)