summaryrefslogtreecommitdiff
path: root/voluptuous/tests/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'voluptuous/tests/tests.py')
-rw-r--r--voluptuous/tests/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/voluptuous/tests/tests.py b/voluptuous/tests/tests.py
index 54dcc7f..448abc3 100644
--- a/voluptuous/tests/tests.py
+++ b/voluptuous/tests/tests.py
@@ -516,7 +516,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), "Any(%s, None, msg=None)" % str(int))
+ assert_equal(repr(maybe_int), "Any(None, %s, msg=None)" % str(int))
def test_list_validation_messages():