fix badly named test

The test says it's serializing and then calls deserialize()
This commit is contained in:
Tim Tisdall
2015-01-29 22:08:53 +02:00
parent e07092050c
commit afd3c0f6a9

View File

@@ -1550,7 +1550,7 @@ class TestInteger(unittest.TestCase):
result = typ.serialize(node, val)
self.assertEqual(result, colander.null)
def test_serialize_emptystring(self):
def test_deserialize_emptystring(self):
import colander
val = ''
node = DummySchemaNode(None)