diff options
| author | Tom Christie | 2012-10-28 20:21:45 +0000 |
|---|---|---|
| committer | Tom Christie | 2012-10-28 20:21:45 +0000 |
| commit | 6e4ab09aae8295e4ef722d59894bc2934435ae46 (patch) | |
| tree | b4005e865aa2d2d125c2d9be2ea07bffd1e9df87 /rest_framework/tests/serializer.py | |
| parent | 795f6116639ad5a9290db46b7f7fcbe4b0f86af2 (diff) | |
| download | django-rest-framework-6e4ab09aae8295e4ef722d59894bc2934435ae46.tar.bz2 | |
readonly -> read_only
Diffstat (limited to 'rest_framework/tests/serializer.py')
| -rw-r--r-- | rest_framework/tests/serializer.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rest_framework/tests/serializer.py b/rest_framework/tests/serializer.py index 67c97f0f..5df3bd7e 100644 --- a/rest_framework/tests/serializer.py +++ b/rest_framework/tests/serializer.py @@ -301,7 +301,7 @@ class ManyToManyTests(TestCase): class ReadOnlyManyToManyTests(TestCase): def setUp(self): class ReadOnlyManyToManySerializer(serializers.ModelSerializer): - rel = serializers.ManyRelatedField(readonly=True) + rel = serializers.ManyRelatedField(read_only=True) class Meta: model = ReadOnlyManyToManyModel @@ -323,7 +323,7 @@ class ReadOnlyManyToManyTests(TestCase): def test_update(self): """ Attempt to update an instance of a model with a ManyToMany - relationship. Not updated due to readonly=True + relationship. Not updated due to read_only=True """ new_anchor = Anchor() new_anchor.save() @@ -339,7 +339,7 @@ class ReadOnlyManyToManyTests(TestCase): def test_update_without_relationship(self): """ Attempt to update an instance of a model where many to ManyToMany - relationship is not supplied. Not updated due to readonly=True + relationship is not supplied. Not updated due to read_only=True """ new_anchor = Anchor() new_anchor.save() |
