Add missing space in expected test result

This commit is contained in:
Tyler Hobbs
2014-01-29 14:06:43 -06:00
parent 00a82dbfa2
commit ad7c367791

View File

@@ -42,7 +42,7 @@ class ParamBindingTest(unittest.TestCase):
def test_set_collection(self):
result = bind_params("%s", (set(['a', 'b']),))
self.assertIn(result, ("{ 'a' , 'b' }", "{ 'b', 'a' }"))
self.assertIn(result, ("{ 'a' , 'b' }", "{ 'b' , 'a' }"))
def test_map_collection(self):
vals = OrderedDict()