diff options
| author | Josh Soref <jsoref@users.noreply.github.com> | 2015-12-02 23:55:50 +0000 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-12-03 12:48:24 -0500 |
| commit | 93452a70e8a62c7408eeded444f5088d4a26212d (patch) | |
| tree | dfc64c81f0610e45650350e2d41918f5913ed098 /tests/utils_tests/test_http.py | |
| parent | b6dd0afead80a17d0ac8c3ba35c510afac32a0b8 (diff) | |
Fixed many spelling mistakes in code, comments, and docs.
Diffstat (limited to 'tests/utils_tests/test_http.py')
| -rw-r--r-- | tests/utils_tests/test_http.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/utils_tests/test_http.py b/tests/utils_tests/test_http.py index baa126d423..f90486003a 100644 --- a/tests/utils_tests/test_http.py +++ b/tests/utils_tests/test_http.py @@ -75,7 +75,7 @@ class TestUtilsHttp(unittest.TestCase): for bad_url in ('http://example.com', 'http:///example.com', 'https://example.com', - 'ftp://exampel.com', + 'ftp://example.com', r'\\example.com', r'\\\example.com', r'/\\/example.com', @@ -96,7 +96,7 @@ class TestUtilsHttp(unittest.TestCase): self.assertFalse(http.is_safe_url(bad_url, host='testserver'), "%s should be blocked" % bad_url) for good_url in ('/view/?param=http://example.com', '/view/?param=https://example.com', - '/view?param=ftp://exampel.com', + '/view?param=ftp://example.com', 'view/?param=//example.com', 'https://testserver/', 'HTTPS://testserver/', |
