Commit 26623436 by Carlton Gibson Committed by GitHub

Merge pull request #5179 from felixxm/issue-uri-to-iri

Fixed test_hyperlinked_related_lookup_url_encoded_exists.
parents 871ce349 a002bb5c
......@@ -96,7 +96,7 @@ class TestHyperlinkedRelatedField(APISimpleTestCase):
def setUp(self):
self.queryset = MockQueryset([
MockObject(pk=1, name='foobar'),
MockObject(pk=2, name='baz qux'),
MockObject(pk=2, name='bazABCqux'),
])
self.field = serializers.HyperlinkedRelatedField(
view_name='example',
......@@ -116,7 +116,7 @@ class TestHyperlinkedRelatedField(APISimpleTestCase):
assert instance is self.queryset.items[0]
def test_hyperlinked_related_lookup_url_encoded_exists(self):
instance = self.field.to_internal_value('http://example.org/example/baz%20qux/')
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_does_not_exist(self):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment