Skip to content

Commit 83bfbc2

Browse files
committed
Use *.data for tests data files
1 parent d3c95db commit 83bfbc2

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed
File renamed without changes.

ext/iconv/tests/translit-utf8.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ error_reporting=2047
1010
--FILE--
1111
<?php
1212
//error_reporting(E_ALL);
13-
$utf = implode('', file(__DIR__.'/Quotes.UTF-8'));
13+
$utf = implode('', file(__DIR__.'/Quotes.UTF-8.data'));
1414

1515
print(iconv("UTF-8", "ISO-8859-1//TRANSLIT", $utf));
1616
print(iconv("UTF-8", "ASCII//TRANSLIT", $utf));

ext/recode/tests/002.phpt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ function ascii2hex($ascii) {
1414
return $hex;
1515
}
1616

17-
$html_file = fopen(realpath(__DIR__) . '/html.raw', 'r');
18-
$utf_8_filepath = realpath(__DIR__) . '/utf8.raw';
17+
$html_file = fopen(realpath(__DIR__) . '/html.data', 'r');
18+
$utf_8_filepath = realpath(__DIR__) . '/utf8.tmp';
1919
$utf_8_file = fopen($utf_8_filepath, 'w+');
2020

2121
recode_file('html..utf8', $html_file, $utf_8_file);
File renamed without changes.

0 commit comments

Comments
 (0)