summaryrefslogtreecommitdiffstats
path: root/tests/codeigniter/core/Loader_test.php
diff options
context:
space:
mode:
authorGreg Aker <greg.aker@ellislab.com>2011-04-21 18:30:23 +0200
committerGreg Aker <greg.aker@ellislab.com>2011-04-21 18:30:23 +0200
commit98357c5865dbec43bcb79fb114469d40cf2f5367 (patch)
tree38295dadb5fe0f250ac5b2bc787e2a0cb1cadaed /tests/codeigniter/core/Loader_test.php
parent8da69039f6d855eb4f88de73702155e6899d2d23 (diff)
Swap from assertEquals(FALSE, x) to just assertFalse(). Silly Greg.
Diffstat (limited to 'tests/codeigniter/core/Loader_test.php')
-rw-r--r--tests/codeigniter/core/Loader_test.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/codeigniter/core/Loader_test.php b/tests/codeigniter/core/Loader_test.php
index 2aa1b8cb9..83ee68777 100644
--- a/tests/codeigniter/core/Loader_test.php
+++ b/tests/codeigniter/core/Loader_test.php
@@ -101,7 +101,7 @@ class Loader_test extends CI_TestCase {
$this->assertNull($this->load->model('unit_test_model'));
// Test no model given
- $this->assertEquals(FALSE, $this->load->model(''));
+ $this->assertFalse($this->load->model(''));
// Test a string given to params
// $this->assertEquals(NULL, $this->load->model('foobar', ' '));