home · contact · privacy
Minor refactoring.
[plomtask] / tests / utils.py
index 2a919a31dbb057f4db558861d2fafe8277db5521..34f429e9d1fcc6355cdb9d7eae8f60c9e125b2d5 100644 (file)
@@ -70,9 +70,9 @@ class TestCaseWithServer(TestCaseWithDB):
                    'Content-Length': str(len(encoded_form_data))}
         self.conn.request('POST', target,
                           body=encoded_form_data, headers=headers)
-        if redirect_location == '':
-            redirect_location = target
         if 302 == expected_code:
+            if redirect_location == '':
+                redirect_location = target
             self.check_redirect(redirect_location)
         else:
             self.assertEqual(self.conn.getresponse().status, expected_code)