8000 Removed 'u' from test, which is causing failure in Python 3.2 · pythonthings/github3.py@5435bd9 · GitHub
[go: up one dir, main page]

Skip to content

Commit 5435bd9

Browse files
Removed 'u' from test, which is causing failure in Python 3.2
1 parent 697a8ff commit 5435bd9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/test_git.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ def test_recurse(self):
2323
self.instance.recurse()
2424
self.session.get.assert_called_once_with(
2525
url_for(),
26-
params={u'recursive': u'1'}
26+
params={'recursive': '1'}
2727
)

0 commit comments

Comments
 (0)
0