Skip to content

Commit b039967

Browse files
committed
Please lint
1 parent 4f295ac commit b039967

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypyc/test/test_emitfunc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,7 @@ def test_inc_ref_int_literal(self) -> None:
829829
def test_c_string(self) -> None:
830830
s = Register(cstring_rprimitive, "s")
831831
self.assert_emit(Assign(s, CString(b"foo")), """cpy_r_s = "foo";""")
832-
self.assert_emit(Assign(s, CString(b'fo "o')), r"""cpy_r_s = "fo \"o";""")
832+
self.assert_emit(Assign(s, CString(b'foo "o')), r"""cpy_r_s = "foo \"o";""")
833833
self.assert_emit(Assign(s, CString(b"\x00")), r"""cpy_r_s = "\x00";""")
834834
self.assert_emit(Assign(s, CString(b"\\")), r"""cpy_r_s = "\\";""")
835835
for i in range(256):

0 commit comments

Comments
 (0)