Skip to content

Commit b732d81

Browse files
Update irbuild-bytes.test
1 parent f3404bf commit b732d81

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

mypyc/test-data/irbuild-bytes.test

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -225,18 +225,18 @@ from typing import Final
225225

226226
constant: Final = b"constant"
227227

228-
def fold_tuple() -> str:
228+
def fold_tuple() -> bytes:
229229
return b" ".join((constant, b"folded"))
230-
def fold_list() -> str:
230+
def fold_list() -> bytes:
231231
return b" ".join([constant, b"folded"])
232232
[out]
233233
def fold_tuple():
234234
r0 :: bytes
235235
L0:
236-
r0 = "constant folded"
236+
r0 = b'constant folded'
237237
return r0
238238
def fold_list():
239239
r0 :: bytes
240240
L0:
241-
r0 = "constant folded"
241+
r0 = b'constant folded'
242242
return r0

0 commit comments

Comments
 (0)