summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-12-28 16:04:40 +0100
committerAndrey Andreev <narf@bofh.bg>2012-12-28 16:04:40 +0100
commit88257ce618483e4477cbfed0e2f0b4c429533e09 (patch)
tree9dcbe9d1fe96dc10850e1c0866b89a9357985662 /tests
parenta43417d56126cc214121928f73ec81c09ea112bf (diff)
Update CI_Output::get_header() test
Diffstat (limited to 'tests')
-rw-r--r--tests/codeigniter/core/Output_test.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/codeigniter/core/Output_test.php b/tests/codeigniter/core/Output_test.php
index d8252403d..728df3bf6 100644
--- a/tests/codeigniter/core/Output_test.php
+++ b/tests/codeigniter/core/Output_test.php
@@ -29,8 +29,8 @@ class Output_test extends CI_TestCase {
$this->output->set_content_type('text/plain', 'WINDOWS-1251');
$this->assertEquals(
- 'text/plain; charset=windows-1251', // Character set is converted to lowercase
- $this->output->get_header('content-type') // Case-insensitive comparison
+ 'text/plain; charset=WINDOWS-1251',
+ $this->output->get_header('content-type')
);
}