Skip to content

Commit 4c3cff0

Browse files
committed
tests: renamed .inc to .php
1 parent b8c7861 commit 4c3cff0

10 files changed

Lines changed: 7 additions & 7 deletions

tests/Tracy/Debugger.E_COMPILE_ERROR.console.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ function second($arg1, $arg2)
6464

6565
function third($arg1)
6666
{
67-
require 'E_COMPILE_ERROR.inc';
67+
require 'E_COMPILE_ERROR.php';
6868
}
6969

7070

tests/Tracy/Debugger.autoloading.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ Debugger::enable();
1919

2020

2121
// in this case autoloading is not triggered
22-
include 'E_STRICT.inc';
22+
include 'E_STRICT.php';

tests/Tracy/Debugger.scream.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ Debugger::enable();
2222
PHP_MAJOR_VERSION < 7 ? @mktime(0, 0, 0, 1, 23, 1978, 1) : @mktime(); // E_DEPRECATED
2323
@$x++; // E_NOTICE
2424
@min(1); // E_WARNING
25-
@require 'E_COMPILE_WARNING.inc'; // E_COMPILE_WARNING (not working)
25+
@require 'E_COMPILE_WARNING.php'; // E_COMPILE_WARNING (not working)

tests/Tracy/Debugger.shut-up.warnings.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ Debugger::enable();
2121
PHP_MAJOR_VERSION < 7 ? @mktime(0, 0, 0, 1, 23, 1978, 1) : @mktime(); // E_DEPRECATED
2222
@$x++; // E_NOTICE
2323
@min(1); // E_WARNING
24-
@require 'E_COMPILE_WARNING.inc'; // E_COMPILE_WARNING
24+
@require 'E_COMPILE_WARNING.php'; // E_COMPILE_WARNING

tests/Tracy/Debugger.warnings.console.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ function third($arg1)
3535
PHP_MAJOR_VERSION < 7 ? mktime(0, 0, 0, 1, 23, 1978, 1) : mktime(); // E_DEPRECATED
3636
$x++; // E_NOTICE
3737
min(1); // E_WARNING
38-
require 'E_COMPILE_WARNING.inc'; // E_COMPILE_WARNING
38+
require 'E_COMPILE_WARNING.php'; // E_COMPILE_WARNING
3939
}
4040

4141
ob_start();

tests/Tracy/Debugger.warnings.html.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ function third($arg1)
6868
PHP_MAJOR_VERSION < 7 ? mktime(0, 0, 0, 1, 23, 1978, 1) : mktime(); // E_DEPRECATED
6969
$x++; // E_NOTICE
7070
min(1); // E_WARNING
71-
require 'E_COMPILE_WARNING.inc'; // E_COMPILE_WARNING
71+
require 'E_COMPILE_WARNING.php'; // E_COMPILE_WARNING
7272
}
7373

7474

tests/Tracy/Debugger.warnings.production.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ mktime(); // E_STRICT in PHP 5, E_DEPRECATED in PHP 7
2020
PHP_MAJOR_VERSION < 7 ? @mktime(0, 0, 0, 1, 23, 1978, 1) : @mktime(); // E_DEPRECATED
2121
$x++; // E_NOTICE
2222
min(1); // E_WARNING
23-
require 'E_COMPILE_WARNING.inc'; // E_COMPILE_WARNING
23+
require 'E_COMPILE_WARNING.php'; // E_COMPILE_WARNING

0 commit comments

Comments
 (0)