@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | * NOTE: If you change these, also change the error_reporting() code below |
55 | 55 | */ |
56 | 56 | // This `if` statemant is needed for @runInSeparateProcess |
57 | -if (! defined('ENVIRONMENT')) |
|
57 | +if ( ! defined('ENVIRONMENT')) |
|
58 | 58 | { |
59 | 59 | define('ENVIRONMENT', 'testing'); |
60 | 60 | } |
@@ -233,7 +233,7 @@ discard block |
||
233 | 233 | define('SELF', pathinfo(__FILE__, PATHINFO_BASENAME)); |
234 | 234 | |
235 | 235 | // Path to the test directory containing all the test files. |
236 | - define('TESTPATH', __dir__.DIRECTORY_SEPARATOR); // Should be the folder this `Bootstrap.php` file is in. |
|
236 | + define('TESTPATH', __dir__.DIRECTORY_SEPARATOR); // Should be the folder this `Bootstrap.php` file is in. |
|
237 | 237 | |
238 | 238 | // Path to the system directory |
239 | 239 | define('BASEPATH', $system_path); |
@@ -366,7 +366,7 @@ discard block |
||
366 | 366 | define('TESTPATH', APPPATH.'tests'.DIRECTORY_SEPARATOR); |
367 | 367 | */ |
368 | 368 | |
369 | -require __DIR__ . '/_ci_phpunit_test/CIPHPUnitTest.php'; |
|
369 | +require __DIR__.'/_ci_phpunit_test/CIPHPUnitTest.php'; |
|
370 | 370 | |
371 | 371 | CIPHPUnitTest::init(); |
372 | 372 | // Or you can set directories for autoloading |