Skip to content

Commit

Permalink
Removing use_natural* kwargs from serializer init
Browse files Browse the repository at this point in the history
  • Loading branch information
respondcreate committed Feb 11, 2015
1 parent 866334e commit c10aa82
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tests/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -947,9 +947,7 @@ def test_field_serialization(self):
"""
output = serializers.serialize(
'json',
VersatileImageTestModel.objects.filter(pk=1),
use_natural_foreign_keys=False,
use_natural_primary_keys=False
VersatileImageTestModel.objects.filter(pk=1)
)
self.assertJSONEqual(
output,
Expand Down

0 comments on commit c10aa82

Please sign in to comment.