diff options
author | darwinel <kmorssink@gmail.com> | 2014-02-11 20:43:16 +0100 |
---|---|---|
committer | darwinel <kmorssink@gmail.com> | 2014-02-11 20:43:16 +0100 |
commit | 2c2722e6b18c3b2ba49d27bedff33e43cf92bf93 (patch) | |
tree | b93a7dece4437e1045dd6d3482398f03301eab26 /tests/codeigniter/core/Config_test.php | |
parent | d8bef8a878238c6974f01758469af1c13ac8b8d7 (diff) |
Some other small writing consistency fixes
As described in the Style guide.
Found after some grep’ing.
Diffstat (limited to 'tests/codeigniter/core/Config_test.php')
-rw-r--r-- | tests/codeigniter/core/Config_test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/codeigniter/core/Config_test.php b/tests/codeigniter/core/Config_test.php index ba9a2c070..6a0a7a35f 100644 --- a/tests/codeigniter/core/Config_test.php +++ b/tests/codeigniter/core/Config_test.php @@ -180,7 +180,7 @@ class Config_test extends CI_TestCase { $cfg = array( 'one' => 'prime', 'two' => 2, - 'three' => true + 'three' => TRUE ); $this->ci_vfs_create($file.'.php', '<?php $config = '.var_export($cfg, TRUE).';', $this->ci_app_root, 'config'); $this->assertTrue($this->config->load($file, TRUE)); |