8000 Fix unicode literals for 3.2 compat · Web5design/twilio-python@5862f99 · GitHub
[go: up one dir, main page]

Skip to content

Commit 5862f99

Browse files
committed
Fix unicode literals for 3.2 compat
1 parent 8503534 commit 5862f99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_unicode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def test_unicode_sequence_form_value(resp_mock, mock):
7777
http.request.return_value = (Mock(), Mock())
7878

7979
data = {
80-
"body": [u'å', u'ç'],
80+
"body": [u('\xe5'), u('\xe7')],
8181
}
8282

8383
resources.make_request("POST", "http://www.example.com", data=data)

0 commit comments

Comments
 (0)
0