summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMichael Cahill <michael.cahill@mongodb.com>2016-01-20 14:54:25 +1100
committerMichael Cahill <michael.cahill@mongodb.com>2016-01-20 14:54:25 +1100
commit0c241d2988705a7b77ee23410f1ac032767ae791 (patch)
tree2b2d2a503685fbbb5f5363b7627b35a91537848e /test
parentb7f10136bb4baf8d72194ac573bf6a2009577b62 (diff)
downloadmongo-0c241d2988705a7b77ee23410f1ac032767ae791.tar.gz
WT-1517 Set the packing size = 1 by default in the fast path.
Don't add extra checks into regular processing: we already set size = 1 in normal processing of packing strings if no size is specified. Make the Python packing code match so all test cases pass.
Diffstat (limited to 'test')
-rw-r--r--test/suite/test_config06.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/test/suite/test_config06.py b/test/suite/test_config06.py
index 7fed9bb99bc..d426bfe2de9 100644
--- a/test/suite/test_config06.py
+++ b/test/suite/test_config06.py
@@ -80,8 +80,6 @@ class test_config06(wttest.WiredTigerTestCase):
cursor[k] = v
self.assertEquals(cursor[k], v)
- '''
- CURRENTLY DOES NOT WORK
def test_format_string_s_default(self):
k = self.key
v = self.value
@@ -89,7 +87,6 @@ class test_config06(wttest.WiredTigerTestCase):
cursor = self.session.open_cursor(self.uri, None)
cursor[k] = v
self.assertEquals(cursor[k[:1]], v[:1])
- '''
if __name__ == '__main__':