aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_fields.py
diff options
context:
space:
mode:
authorTom Christie2014-12-18 10:39:00 +0000
committerTom Christie2014-12-18 10:39:00 +0000
commit1087ccbb258ca79ee42509abc4bb17b6c277f9ce (patch)
tree2abd9abf59e7367e1b94795349fcca6f69fa3fd8 /tests/test_fields.py
parent87ac64e41b60a26e6711648b9935c70dc35738a8 (diff)
downloaddjango-rest-framework-1087ccbb258ca79ee42509abc4bb17b6c277f9ce.tar.bz2
Drop print statements in tests
Diffstat (limited to 'tests/test_fields.py')
-rw-r--r--tests/test_fields.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/test_fields.py b/tests/test_fields.py
index 2888df83..04c721d3 100644
--- a/tests/test_fields.py
+++ b/tests/test_fields.py
@@ -245,8 +245,6 @@ class TestCharHTMLInput:
message = serializers.CharField(allow_null=True, allow_blank=True)
serializer = TestSerializer(data=MockHTMLDict({}))
- print serializer.is_valid()
- print serializer.errors
assert serializer.is_valid()
assert serializer.validated_data == {'message': ''}