Skip to content

Commit

Permalink
quote a test parameter that should have been quoted all along. Commit…
Browse files Browse the repository at this point in the history
… ready for merge.

 - Legacy-Id: 19215
  • Loading branch information
rjsparks committed Jul 14, 2021
1 parent 8e71f41 commit 993299f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ietf/ipr/tests.py
Expand Up @@ -179,7 +179,8 @@ def test_search(self):
self.assertContains(r, ipr.title)

# find by patent info
r = self.client.get(url + "?submit=patent&patent=%s" % ipr.patent_info)
debug.show('ipr.patent_info')
r = self.client.get(url + "?submit=patent&patent=%s" % quote(ipr.patent_info))
self.assertContains(r, ipr.title)

r = self.client.get(url + "?submit=patent&patent=US12345")
Expand Down

0 comments on commit 993299f

Please sign in to comment.