summaryrefslogtreecommitdiffstats
path: root/tests/codeigniter/libraries/Session_test.php
diff options
context:
space:
mode:
authordarwinel <kmorssink@gmail.com>2014-02-11 20:43:16 +0100
committerdarwinel <kmorssink@gmail.com>2014-02-11 20:43:16 +0100
commit2c2722e6b18c3b2ba49d27bedff33e43cf92bf93 (patch)
treeb93a7dece4437e1045dd6d3482398f03301eab26 /tests/codeigniter/libraries/Session_test.php
parentd8bef8a878238c6974f01758469af1c13ac8b8d7 (diff)
Some other small writing consistency fixes
As described in the Style guide. Found after some grep’ing.
Diffstat (limited to 'tests/codeigniter/libraries/Session_test.php')
-rw-r--r--tests/codeigniter/libraries/Session_test.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/codeigniter/libraries/Session_test.php b/tests/codeigniter/libraries/Session_test.php
index 97e9444ee..6f1332384 100644
--- a/tests/codeigniter/libraries/Session_test.php
+++ b/tests/codeigniter/libraries/Session_test.php
@@ -91,7 +91,7 @@ class Session_test extends CI_TestCase {
$cmsg1 = 'Some test data';
$cmsg2 = 42;
$nmsg1 = 'Other test data';
- $nmsg2 = true;
+ $nmsg2 = TRUE;
$this->session->cookie->set_userdata($key1, $cmsg1);
$this->session->set_userdata($ckey2, $cmsg2);
$this->session->native->set_userdata($key1, $nmsg1);