Commit 78a0ca67 authored by Tobias McNulty's avatar Tobias McNulty Committed by Markus Holtermann
Browse files

Refs #26666 -- Fixed test failures caused by assertRedirects changes (#6701)

parent ff9198ee
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -303,7 +303,10 @@ class SimpleTestCase(unittest.TestCase):
                path = urljoin(response.request['PATH_INFO'], path)

            if fetch_redirect_response:
                if netloc:
                # netloc might be empty, or in cases where Django tests the
                # HTTP scheme, the convention is for netloc to be 'testserver'.
                # Trust both as "internal" URLs here.
                if netloc and netloc != 'testserver':
                    raise ValueError(
                        "The Django test client is unable to fetch remote URLs (got %s). "
                        "Use assertRedirects(..., fetch_redirect_response=False) instead." % url