Skip to content

Commit

Permalink
fix py2/3 issues
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreaCrotti committed Oct 21, 2016
1 parent fea2d4d commit 5dfa2b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion voluptuous/tests/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ def test_repr():
)
assert_equal(repr(coerce_), "Coerce(int, msg='moo')")
assert_equal(repr(all_), "All('10', Coerce(int, msg=None), msg='all msg')")
assert_equal(repr(maybe_int), "Maybe(<type 'int'>)")
assert_equal(repr(maybe_int), "Maybe(%s)" % str(int))


def test_list_validation_messages():
Expand Down

0 comments on commit 5dfa2b2

Please sign in to comment.