Skip to content

Commit 27193d8

Browse files
Update irbuild-constant-fold.test
1 parent e2fa664 commit 27193d8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mypyc/test-data/irbuild-constant-fold.test

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -494,18 +494,18 @@ def slice_index() -> None:
494494
def pos_index():
495495
r0, a :: str
496496
L0:
497-
r0 = "s"
497+
r0 = 's'
498498
a = r0
499499
return 1
500500
def neg_index():
501501
r0, a :: str
502502
L0:
503-
r0 = "t"
503+
r0 = 't'
504504
a = r0
505505
return 1
506506
def slice_index():
507507
r0, a :: str
508508
L0:
509-
r0 = "string"
509+
r0 = 'string'
510510
a = r0
511511
return 1

0 commit comments

Comments
 (0)