summaryrefslogtreecommitdiffstats
path: root/tests/codeigniter/core/Config_test.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2014-02-11 20:46:22 +0100
committerAndrey Andreev <narf@devilix.net>2014-02-11 20:46:22 +0100
commitf6ead61e8930574b0e7e8cfad6b4878bb169d61a (patch)
tree7f29b4606a573aa4b8d532c9246c3788ec75f55b /tests/codeigniter/core/Config_test.php
parent053d5d6e8dff0f1af9c33330960a1085628b3930 (diff)
parent2c2722e6b18c3b2ba49d27bedff33e43cf92bf93 (diff)
Merge pull request #2873 from darwinel/develop
Some other small writing consistency fixes
Diffstat (limited to 'tests/codeigniter/core/Config_test.php')
-rw-r--r--tests/codeigniter/core/Config_test.php2
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));