Skip to content

Commit 9772b42

Browse files
committed
Tests/NamedFunctionCallArgumentsTest: improve test markers
Make the test marker names more descriptive.
1 parent 5bd0b83 commit 9772b42

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

tests/Core/Tokenizer/NamedFunctionCallArgumentsTest.inc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ array_fill(
3232
value: 50
3333
);
3434

35-
/* testNamespaceOperatorFunction */
35+
/* testNamespaceRelativeFunction */
3636
namespace\function_name(label:$string, more: false);
3737

38-
/* testNamespaceRelativeFunction */
38+
/* testPartiallyQualifiedFunction */
3939
Partially\Qualified\function_name(label:$string, more: false);
4040

41-
/* testNamespacedFQNFunction */
41+
/* testFullyQualifiedFunction */
4242
\Fully\Qualified\function_name(label: $string, more:false);
4343

4444
/* testVariableFunction */

tests/Core/Tokenizer/NamedFunctionCallArgumentsTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,21 +124,21 @@ public static function dataNamedFunctionCallArguments()
124124
['array_or_countable'],
125125
],
126126
[
127-
'/* testNamespaceOperatorFunction */',
127+
'/* testNamespaceRelativeFunction */',
128128
[
129129
'label',
130130
'more',
131131
],
132132
],
133133
[
134-
'/* testNamespaceRelativeFunction */',
134+
'/* testPartiallyQualifiedFunction */',
135135
[
136136
'label',
137137
'more',
138138
],
139139
],
140140
[
141-
'/* testNamespacedFQNFunction */',
141+
'/* testFullyQualifiedFunction */',
142142
[
143143
'label',
144144
'more',

0 commit comments

Comments
 (0)