Skip to content

Commit 3aa2dfe

Browse files
Update irbuild-bytes.test
1 parent 5b533e2 commit 3aa2dfe

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

mypyc/test-data/irbuild-bytes.test

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,12 +221,13 @@ L3:
221221
[case testBytesJoinConstantFold]
222222
from typing import Final
223223

224+
# TODO: this is not currently supported but probably should be
224225
constant: Final = b"constant"
225226

226227
def fold_tuple() -> bytes:
227-
return b" ".join((constant, b"folded"))
228+
return b" ".join((b"constant", b"folded"))
228229
def fold_list() -> bytes:
229-
return b" ".join([constant, b"folded"])
230+
return b" ".join([b"constant", b"folded"])
230231
[out]
231232
def fold_tuple():
232233
r0 :: bytes

0 commit comments

Comments
 (0)