Skip to content

Commit ee7e295

Browse files
committed
Fix type
1 parent 2784b2f commit ee7e295

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bpython/test/test_interpreter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def gfunc():
130130
self.assertEqual(plain("").join(a), expected)
131131

132132
def test_runsource_bytes_over_128_syntax_error_py3(self):
133-
i = interpreter.Interp(encoding=b"latin-1")
133+
i = interpreter.Interp(encoding="latin-1")
134134
i.showsyntaxerror = mock.Mock(return_value=None)
135135

136136
i.runsource("a = b'\xfe'")

0 commit comments

Comments
 (0)