diff options
Diffstat (limited to 'tests/lang/bug32924.phpt')
-rw-r--r-- | tests/lang/bug32924.phpt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/lang/bug32924.phpt b/tests/lang/bug32924.phpt index ddb8301e3..d72b0eaa2 100644 --- a/tests/lang/bug32924.phpt +++ b/tests/lang/bug32924.phpt @@ -1,12 +1,12 @@ --TEST-- Bug #32924 (prepend does not add file to included files) --INI-- -include_path=. -auto_prepend_file=tests/lang/inc.inc +include_path={PWD} +auto_prepend_file=inc.inc --FILE-- <?php -include_once('tests/lang/inc.inc'); -require_once('tests/lang/inc.inc'); +include_once(dirname(__FILE__).'/inc.inc'); +require_once(dirname(__FILE__).'/inc.inc'); ?> END --EXPECT-- |