We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d331e3 commit a93eed5Copy full SHA for a93eed5
1 file changed
tests/test_cli.py
@@ -10,6 +10,6 @@ def test_console_script():
10
stdout=subprocess.PIPE).communicate()[0]
11
with open('tests/fixtures/README.txt') as f:
12
expect = ''.join(f.readlines())
13
- if type(r) == bytes:
+ if type(result) == bytes:
14
result.decode('utf-8')
15
assert result == expect
0 commit comments