diff options
| author | Tim Graham <timograham@gmail.com> | 2015-05-20 13:05:41 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-05-20 13:05:41 -0400 |
| commit | e2b77aceddbda9071fcfc38f90fb50d091d0b5fc (patch) | |
| tree | b11c74d528245d78979a4cca629177120ddf4b29 | |
| parent | c15b0c27927afd141d311dd9bfe68540cf44a8d6 (diff) | |
Fixed typo in file_storage tests.
| -rw-r--r-- | tests/file_storage/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/file_storage/tests.py b/tests/file_storage/tests.py index 33fd9cc14d..49c951df6e 100644 --- a/tests/file_storage/tests.py +++ b/tests/file_storage/tests.py @@ -251,7 +251,7 @@ class FileStorageTests(unittest.TestCase): self.assertEqual(self.storage.url(r"""~!*()'@#$%^&*abc`+ =.file"""), """/test_media_url/~!*()'%40%23%24%25%5E%26*abc%60%2B%20%3D.file""") - # should stanslate os path separator(s) to the url path separator + # should translate os path separator(s) to the url path separator self.assertEqual(self.storage.url("""a/b\\c.file"""), """/test_media_url/a/b/c.file""") |
