Commit 8d96757a authored by Tres Seaver's avatar Tres Seaver

Use valid keys.

parent 3e9c14f5
......@@ -106,7 +106,7 @@ class OLBTreeTest(BTreeTests, TestLongIntValues, unittest.TestCase):
return OLBTree()
def getTwoKeys(self):
return object(), object()
return "abc", "def"
class OLBTreePyTest(BTreeTests, TestLongIntValues, unittest.TestCase):
......@@ -116,7 +116,7 @@ class OLBTreePyTest(BTreeTests, TestLongIntValues, unittest.TestCase):
return OLBTreePy()
def getTwoKeys(self):
return object(), object()
return "abc", "def"
class PureOL(SetResult, unittest.TestCase):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment