From 88257ce618483e4477cbfed0e2f0b4c429533e09 Mon Sep 17 00:00:00 2001 From: Andrey Andreev Date: Fri, 28 Dec 2012 17:04:40 +0200 Subject: Update CI_Output::get_header() test --- tests/codeigniter/core/Output_test.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/codeigniter') 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') ); } -- cgit v1.2.3-24-g4f1b