Skip to content

Commit

Permalink
Fixed a failing test on 3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mitsuhiko committed Sep 4, 2013
1 parent 4ae4476 commit b23efe8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion werkzeug/testsuite/urls.py
Expand Up @@ -146,7 +146,7 @@ def test_iri_support(self):
'http://xn--f-1gaa.com:8080/bam/baz')

def test_iri_safe_quoting(self):
uri = b'http://xn--f-1gaa.com/%2F%25?q=%C3%B6&x=%3D%25#%25'
uri = 'http://xn--f-1gaa.com/%2F%25?q=%C3%B6&x=%3D%25#%25'
iri = u'http://föö.com/%2F%25?q=ö&x=%3D%25#%25'
self.assert_strict_equal(urls.uri_to_iri(uri), iri)
self.assert_strict_equal(urls.iri_to_uri(urls.uri_to_iri(uri)), uri)
Expand Down

0 comments on commit b23efe8

Please sign in to comment.