aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_fields.py
diff options
context:
space:
mode:
authorTom Christie2014-09-26 13:59:37 +0100
committerTom Christie2014-09-26 13:59:37 +0100
commit8be4496586519f84b839b07efc74148a3559349e (patch)
tree7a34cf428cede5c1c9e73f86eac484f3c52ff2ad /tests/test_fields.py
parentee79b453974f3dc8ead83bff86784366d59a4fb1 (diff)
downloaddjango-rest-framework-8be4496586519f84b839b07efc74148a3559349e.tar.bz2
Drop erronous print statements
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 68112748..342ae192 100644
--- a/tests/test_fields.py
+++ b/tests/test_fields.py
@@ -78,8 +78,6 @@ class TestSource:
class ExampleSerializer(serializers.Serializer):
example_field = serializers.CharField(source='other')
serializer = ExampleSerializer(data={'example_field': 'abc'})
- print serializer.is_valid()
- print serializer.data
assert serializer.is_valid()
assert serializer.validated_data == {'other': 'abc'}