aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorTom Christie2014-12-17 15:22:40 +0000
committerTom Christie2014-12-17 15:22:40 +0000
commitffc099a2561be259e6ca378886c0e969a2b5db94 (patch)
treeec61d3549529e64599116eb49562149ffeab7aed /tests
parent1ba822010d0943c67c127f3f62e873b64348ef87 (diff)
parent76cfc5eb8a0a0e34a47020f85e9f4b7a94accf5e (diff)
downloaddjango-rest-framework-ffc099a2561be259e6ca378886c0e969a2b5db94.tar.bz2
Merge branch 'master' of https://github.com/tomchristie/django-rest-framework
Diffstat (limited to 'tests')
-rw-r--r--tests/test_bound_fields.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_bound_fields.py b/tests/test_bound_fields.py
index 469437e4..bfc54b23 100644
--- a/tests/test_bound_fields.py
+++ b/tests/test_bound_fields.py
@@ -22,7 +22,7 @@ class TestSimpleBoundField:
amount = serializers.IntegerField()
serializer = ExampleSerializer(data={'text': 'abc', 'amount': 123})
-
+ assert serializer.is_valid()
assert serializer['text'].value == 'abc'
assert serializer['text'].errors is None
assert serializer['text'].name == 'text'