From d9f09b72dbda0d17e52b8feac4505eec4f532085 Mon Sep 17 00:00:00 2001 From: ianb Date: Tue, 25 Mar 2008 17:06:48 +0000 Subject: Fix a couple tests that had some fragility --- tests/test_exceptions/test_httpexceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/test_exceptions/test_httpexceptions.py') diff --git a/tests/test_exceptions/test_httpexceptions.py b/tests/test_exceptions/test_httpexceptions.py index 4ca64a4..5cb9319 100644 --- a/tests/test_exceptions/test_httpexceptions.py +++ b/tests/test_exceptions/test_httpexceptions.py @@ -76,7 +76,7 @@ def test_redapp(): '302 Found\n' 'This resource was found at /bing/foo;\n' 'you should be redirected automatically.\n') - assert "text/plain" == header_value(saved[1][1],'content-type') + assert "text/plain; charset=utf8" == header_value(saved[1][1],'content-type') assert "/bing/foo" == header_value(saved[1][1],'location') def test_misc(): -- cgit v1.2.1