diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-11-29 23:13:17 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-11-29 23:13:17 +0100 |
commit | 4173823ba1b45955d63cb5e8d60f02312e345bda (patch) | |
tree | 96a2cbe539eeebbc895640645005369ea5919712 /tests | |
parent | cc4b00347c9ff061488bc88194002be701f4190f (diff) |
Fix #2041
Diffstat (limited to 'tests')
-rw-r--r-- | tests/codeigniter/core/Output_test.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/codeigniter/core/Output_test.php b/tests/codeigniter/core/Output_test.php index 3384143e9..d8252403d 100644 --- a/tests/codeigniter/core/Output_test.php +++ b/tests/codeigniter/core/Output_test.php @@ -2,11 +2,13 @@ class Output_test extends CI_TestCase { + public $output; + public function set_up() { $this->ci_set_config('charset', 'UTF-8'); $output = $this->ci_core_class('output'); - $this->output = new $output(); + $this->output = new $output(); } // -------------------------------------------------------------------- |