Skip to content

Commit 69cb2b9

Browse files
committed
Don't use non-ASCII bytes literals.
1 parent 517dbd8 commit 69cb2b9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/test_oauth.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,8 @@ def test_get_nonoauth_parameters(self):
434434
u('multi'): [u('FOO'), u('BAR')],
435435
u('uni_utf8'): u(b'\xae', 'latin1'),
436436
u('uni_unicode'): _UGLYPH,
437-
u('uni_unicode_2'): u(b'åÅøØ', 'latin1'),
437+
u('uni_unicode_2'):
438+
u(b'\xc3\xa5\xc3\x85\xc3\xb8\xc3\x98', 'latin1'), # 'åÅøØ'
438439
}
439440

440441
params = oauth_params

0 commit comments

Comments
 (0)