Commit ec3c245c authored by Martin Panter's avatar Martin Panter

Issue #26609: Fix up Python 2 port

parent af58c857
...@@ -363,17 +363,17 @@ class SimpleHTTPServerTestCase(BaseTestCase): ...@@ -363,17 +363,17 @@ class SimpleHTTPServerTestCase(BaseTestCase):
def test_path_without_leading_slash(self): def test_path_without_leading_slash(self):
response = self.request(self.tempdir_name + '/test') response = self.request(self.tempdir_name + '/test')
self.check_status_and_reason(response, HTTPStatus.OK, data=self.data) self.check_status_and_reason(response, 200, data=self.data)
response = self.request(self.tempdir_name + '/test/') response = self.request(self.tempdir_name + '/test/')
self.check_status_and_reason(response, HTTPStatus.NOT_FOUND) self.check_status_and_reason(response, 404)
response = self.request(self.tempdir_name + '/') response = self.request(self.tempdir_name + '/')
self.check_status_and_reason(response, HTTPStatus.OK) self.check_status_and_reason(response, 200)
response = self.request(self.tempdir_name) response = self.request(self.tempdir_name)
self.check_status_and_reason(response, HTTPStatus.MOVED_PERMANENTLY) self.check_status_and_reason(response, 301)
response = self.request(self.tempdir_name + '/?hi=2') response = self.request(self.tempdir_name + '/?hi=2')
self.check_status_and_reason(response, HTTPStatus.OK) self.check_status_and_reason(response, 200)
response = self.request(self.tempdir_name + '?hi=1') response = self.request(self.tempdir_name + '?hi=1')
self.check_status_and_reason(response, HTTPStatus.MOVED_PERMANENTLY) self.check_status_and_reason(response, 301)
self.assertEqual(response.getheader("Location"), self.assertEqual(response.getheader("Location"),
self.tempdir_name + "/?hi=1") self.tempdir_name + "/?hi=1")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment