summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/codeigniter/core/Lang_test.php9
1 files changed, 1 insertions, 8 deletions
diff --git a/tests/codeigniter/core/Lang_test.php b/tests/codeigniter/core/Lang_test.php
index 92c71322e..874230feb 100644
--- a/tests/codeigniter/core/Lang_test.php
+++ b/tests/codeigniter/core/Lang_test.php
@@ -18,7 +18,7 @@ class Lang_test extends CI_TestCase {
public function test_load()
{
$this->assertTrue($this->lang->load('profiler', 'english'));
- $this->_test_line();
+ $this->assertEquals('URI STRING', $this->lang->line('profiler_uri_string'));
}
// --------------------------------------------------------------------
@@ -26,13 +26,6 @@ class Lang_test extends CI_TestCase {
public function test_load_with_unspecified_language()
{
$this->assertTrue($this->lang->load('profiler'));
- $this->_test_line();
- }
-
- // --------------------------------------------------------------------
-
- private function _test_line()
- {
$this->assertEquals('URI STRING', $this->lang->line('profiler_uri_string'));
}