From 763bbfffeaa4f6050d9b92edf862a38b2d0243bf Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Mon, 18 Nov 2019 15:52:54 +0000 Subject: [PATCH] Rename duplicate test --- tests/test_relations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_relations.py b/tests/test_relations.py index 123efe4cc..86ed623ae 100644 --- a/tests/test_relations.py +++ b/tests/test_relations.py @@ -192,7 +192,7 @@ class TestHyperlinkedRelatedField(APISimpleTestCase): instance = self.field.to_internal_value('http://example.org/example/baz%41%42%43qux/') assert instance is self.queryset.items[1] - def test_hyperlinked_related_lookup_url_encoded_exists(self): + def test_hyperlinked_related_lookup_url_space_encoded_exists(self): instance = self.field.to_internal_value('http://example.org/example/bazABC%20qux/') assert instance is self.queryset.items[2]