summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJoffrey Jaffeux <j.jaffeux@gmail.com>2012-06-05 15:32:55 +0200
committerJoffrey Jaffeux <j.jaffeux@gmail.com>2012-06-05 15:32:55 +0200
commitd348cb0fd6f255074bc410f169072e2f613074fe (patch)
treec07356184af4908ceda54b00549280cda1b86d59 /tests
parent06c22871943bee956522b893e8acbf206524a229 (diff)
remove _test_line()
Diffstat (limited to 'tests')
-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'));
}