diff options
Diffstat (limited to 'core/tests')
-rw-r--r-- | core/tests/File_Structure_Test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/tests/File_Structure_Test.php b/core/tests/File_Structure_Test.php index 8b328993..34baa1cb 100644 --- a/core/tests/File_Structure_Test.php +++ b/core/tests/File_Structure_Test.php @@ -66,7 +66,7 @@ class File_Structure_Test extends Unit_Test_Case { // The preamble for views is a single line that prevents direct script access $lines = file($file->getPathname()); $this->assert_equal( - "<? defined(\"SYSPATH\") or die(\"No direct script access.\"); ?>\n", + "<?php defined(\"SYSPATH\") or die(\"No direct script access.\") ?>\n", $lines[0], "in file: {$file->getPathname()}"); } else if (preg_match("|\.php$|", $file->getPathname())) { |