Skip to content

Commit cdda5f5

Browse files
committed
Use correct test value.
1 parent aae98a7 commit cdda5f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_oauth.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ def test_to_url_works_with_non_ascii_parameters(self):
465465
other_params = {
466466
u'foo': u'baz',
467467
u'bar': u'foo',
468-
u'multi': [u'FOO',u'BAR'],
468+
u'multi': [u'FOO', u'BAR'],
469469
u'uni_utf8': u'\xae',
470470
u'uni_unicode': u'\u00ae',
471471
u'uni_unicode_2': u'åÅøØ',
@@ -487,7 +487,7 @@ def test_to_url_works_with_non_ascii_parameters(self):
487487
'bar': 'foo',
488488
'uni_unicode_2': '%C3%A5%C3%85%C3%B8%C3%98',
489489
'uni_unicode': '%C2%AE',
490-
'multi': '%5Bb%27FOO%27%2C+b%27BAR%27%5D',
490+
'multi': '%5B%27FOO%27%2C+%27BAR%27%5D',
491491
'oauth_consumer': 'asdfasdfasdf'
492492
}
493493

0 commit comments

Comments
 (0)