From d5cdbbe0eac1b04a138ff78648d5cd0dde7af1a1 Mon Sep 17 00:00:00 2001 From: David Hadas Date: Tue, 23 Oct 2012 09:30:03 +0200 Subject: [PATCH] Two MIME types sent during test The directory tests TestContainerPathsEnv creates directorys during SetUp while indicating duplicate application internet media type (MIME) via the Content-Type header. E.g the output on the line using 'nosetests -v test.functional.tests:TestContainerPaths.testContainerListing' includes: Host: 127.0.0.1:8080 Accept-Encoding: identity Content-Type: application/octet-stream Content-Length: 0 content-type: application/directory X-Auth-Token: AUTH_tkd40f5550289d4d60af75bb1b6c6067be On branch bp/wsgi-application-interface-3 modified: test/functional/tests.py Fixes: Bug #1068499 Implements Blueprint wsgi-application-interface Change-Id: I49c5d1f73fff3c06d4be18b20c7209eff4e1326c --- test/functional/tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/functional/tests.py b/test/functional/tests.py index 1f59f8a745..9afae4a188 100644 --- a/test/functional/tests.py +++ b/test/functional/tests.py @@ -727,9 +727,9 @@ class TestContainerPathsEnv: for f in cls.files: file = cls.container.file(f) if f.endswith('/'): - file.write(hdrs={'content-type': 'application/directory'}) + file.write(hdrs={'Content-Type': 'application/directory'}) else: - file.write_random(cls.file_size, hdrs={'content-type': + file.write_random(cls.file_size, hdrs={'Content-Type': 'application/directory'})