diff options
author | Greg Aker <greg.aker@ellislab.com> | 2011-04-21 18:30:23 +0200 |
---|---|---|
committer | Greg Aker <greg.aker@ellislab.com> | 2011-04-21 18:30:23 +0200 |
commit | 98357c5865dbec43bcb79fb114469d40cf2f5367 (patch) | |
tree | 38295dadb5fe0f250ac5b2bc787e2a0cb1cadaed /tests | |
parent | 8da69039f6d855eb4f88de73702155e6899d2d23 (diff) |
Swap from assertEquals(FALSE, x) to just assertFalse(). Silly Greg.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/codeigniter/core/Loader_test.php | 2 |
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', ' ')); |