summaryrefslogtreecommitdiff
path: root/test/suite/helper.py
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2012-11-29 15:45:47 +0000
committerKeith Bostic <keith@wiredtiger.com>2012-11-29 15:45:47 +0000
commit0d7e7ae327fe1be29b11d210771ad56c7df98bd2 (patch)
tree277bd572a3ade744310a747955e2c129d193d921 /test/suite/helper.py
parent81d9f1c9fd0b01be5f270bcd25a6098407e8e1b6 (diff)
downloadmongo-0d7e7ae327fe1be29b11d210771ad56c7df98bd2.tar.gz
Missed a couple of self arguments.
Diffstat (limited to 'test/suite/helper.py')
-rw-r--r--test/suite/helper.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/suite/helper.py b/test/suite/helper.py
index 46f3d7f0591..212e6f28541 100644
--- a/test/suite/helper.py
+++ b/test/suite/helper.py
@@ -149,7 +149,7 @@ def simple_populate_check_cursor(self, cursor):
def simple_populate_check(self, uri):
self.pr('simple_populate_check: ' + uri)
cursor = self.session.open_cursor(uri, None)
- simple_populate_check_cursor(cursor)
+ simple_populate_check_cursor(self, cursor)
cursor.close()
# Return the value stored in a complex object.
@@ -207,5 +207,5 @@ def complex_populate_check_cursor(self, cursor):
def complex_populate_check(self, uri):
self.pr('complex_populate_check: ' + uri)
cursor = self.session.open_cursor(uri, None)
- complex_populate_check_cursor(cursor)
+ complex_populate_check_cursor(self, cursor)
cursor.close()