Completed
Push — master ( 8452cf...4076f3 )
by Kenji
02:36
created
application/tests/Bootstrap.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
Please login to merge, or discard this patch.