Index: test/preparser/strict-identifiers.pyt |
diff --git a/test/preparser/strict-identifiers.pyt b/test/preparser/strict-identifiers.pyt |
index f979088689cfef9962375ef500099adcc1e11dd3..446980f701f84f5d240989057baaf7cabed868ed 100644 |
--- a/test/preparser/strict-identifiers.pyt |
+++ b/test/preparser/strict-identifiers.pyt |
@@ -147,25 +147,25 @@ label_strict = StrictTemplate("label-strict-$id", """ |
""") |
break_normal = Template("break-normal-$id", """ |
- for (;;) { |
+ $id: for (;false;) { |
break $id; |
} |
""") |
break_strict = StrictTemplate("break-strict-$id", """ |
- for (;;) { |
+ $id: for (;false;) { |
break $id; |
} |
""") |
continue_normal = Template("continue-normal-$id", """ |
- for (;;) { |
+ $id: for (;false;) { |
continue $id; |
} |
""") |
continue_strict = StrictTemplate("continue-strict-$id", """ |
- for (;;) { |
+ $id: for (;false;) { |
continue $id; |
} |
""") |