Skip to content

Commit 9d88066

Browse files
committed
Implement code review changes related to commit 4 (7574c4a)
1 parent 268d1a5 commit 9d88066

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/Core/Tokenizers/Tokenizer/RecurseScopeMapSwitchTokenScopeTest.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ endswitch;
2727
/* testSwitchClosureWithinCondition */
2828
switch((function () {
2929
return 'bar';
30-
})()) /* testSwitchAfterConditionMarker */ {
30+
})()) /* testSwitchClosureWithinConditionScopeOpener */ {
3131
case 1:
3232
return 'test';
3333
}

tests/Core/Tokenizers/Tokenizer/RecurseScopeMapSwitchTokenScopeTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ public static function dataSwitchScope()
119119
'scope_opener' => T_OPEN_CURLY_BRACKET,
120120
'scope_closer' => T_CLOSE_CURLY_BRACKET,
121121
],
122-
'testOpenerMarker' => '/* testSwitchAfterConditionMarker */',
123-
'testCloserMarker' => '/* testSwitchAfterConditionMarker */',
122+
'testOpenerMarker' => '/* testSwitchClosureWithinConditionScopeOpener */',
123+
'testCloserMarker' => '/* testSwitchClosureWithinConditionScopeOpener */',
124124
],
125125
];
126126

0 commit comments

Comments
 (0)