Skip to content

Commit 3e67aca

Browse files
committed
Remove dangling --ARGS-- comment
1 parent f34e1e2 commit 3e67aca

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

ext/intl/tests/dateformat_format_code_datetime_objects.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ function ut_main()
3333
$fmt = ut_datefmt_create($locale_entry, $datetype_entry, $datetype_entry, $timezone, IntlDateFormatter::GREGORIAN);
3434
$formatted = ut_datefmt_format($fmt, $date_entry);
3535

36-
// Replace narrow no-break space (U+202F) with regular space for consistent output.--ARGS--
36+
// Replace narrow no-break space (U+202F) with regular space for consistent output.
3737
// INTL doesn't seem to be very consistent about it either
3838
$formatted = str_replace("\u{202F}", ' ', $formatted);
3939

ext/intl/tests/dateformat_format_code_localtime_array.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ function ut_main()
6464
$fmt = ut_datefmt_create($locale_entry, $datetype_entry, $datetype_entry, $timezone, IntlDateFormatter::GREGORIAN);
6565
$formatted = ut_datefmt_format($fmt, $localtime_entry);
6666

67-
// Replace narrow no-break space (U+202F) with regular space for consistent output.--ARGS--
67+
// Replace narrow no-break space (U+202F) with regular space for consistent output.
6868
// INTL doesn't seem to be very consistent about it either
6969
$formatted = str_replace("\u{202F}", ' ', $formatted);
7070

ext/intl/tests/dateformat_format_code_timestamps.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function ut_main() {
3939
$fmt = ut_datefmt_create($locale_entry, $datetype_entry, $datetype_entry, $timezone, IntlDateFormatter::GREGORIAN);
4040
$formatted = ut_datefmt_format($fmt, $timestamp_entry);
4141

42-
// Replace narrow no-break space (U+202F) with regular space for consistent output.--ARGS--
42+
// Replace narrow no-break space (U+202F) with regular space for consistent output.
4343
// INTL doesn't seem to be very consistent about it either
4444
$formatted = str_replace("\u{202F}", ' ', $formatted);
4545
$res_str .= "Formatted timestamp is : $formatted";

0 commit comments

Comments
 (0)