Fix test_default_usertype

This commit is contained in:
Christophe de Vienne 2012-09-19 23:14:29 +02:00
parent a80f3af917
commit eb58bd2280

View File

@ -21,7 +21,7 @@ class TestTypes(unittest.TestCase):
My = MyType()
assert My.validate('a') is None
assert My.validate('a') == 'a'
assert My.tobasetype('a') == 'a'
assert My.frombasetype('a') == 'a'