Skip to content

Commit 8adefd4

Browse files
author
MarkBaker
committed
Adjust explicit octal tag in NumericSeparator test
1 parent 8a6979d commit 8adefd4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/Core/Tokenizer/BackfillNumericSeparatorTest.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ $foo = 0b0101_1111;
3434
/* testOctal */
3535
$foo = 0137_041;
3636

37-
/* testExplicitOctal (Introduced in PHP 8.1) */
37+
/* testExplicitOctal */
3838
$foo = 0o137_041;
3939

4040
/* testIntMoreThanMax */

tests/Core/Tokenizer/BackfillNumericSeparatorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ public function dataTestBackfill()
134134
],
135135
[
136136
[
137-
'marker' => '/* testExplicitOctal (Introduced in PHP 8.1) */',
137+
'marker' => '/* testExplicitOctal */',
138138
'type' => 'T_LNUMBER',
139139
'value' => '0o137_041',
140140
],

0 commit comments

Comments
 (0)