Skip to content

Commit 379692d

Browse files
committed
Tokenizer/PHP/NullableVsInlineThenTest: fix up copy/paste error in new tests
1 parent 19d566f commit 379692d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/Core/Tokenizers/PHP/NullableVsInlineThenTest.inc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@ $ternary = true ? Partially\callMe() : null;
6666
$ternary = true ? Partially\ClassName::callMe() : null;
6767

6868
/* testInlineThenWithNamespaceRelativeNameAndNothingElse */
69-
$ternary = true ? Partially\CONSTANT_NAME : null;
69+
$ternary = true ? namespace\CONSTANT_NAME : null;
7070

7171
/* testInlineThenWithNamespaceRelativeNameAndParens */
72-
$ternary = true ? Partially\callMe() : null;
72+
$ternary = true ? namespace\callMe() : null;
7373

7474
/* testInlineThenWithNamespaceRelativeNameAndDoubleColon */
75-
$ternary = true ? Partially\ClassName::callMe() : null;
75+
$ternary = true ? namespace\ClassName::callMe() : null;

0 commit comments

Comments
 (0)