diff options
| author | Aymeric Augustin <aymeric.augustin@oscaro.com> | 2014-09-08 21:16:59 +0200 |
|---|---|---|
| committer | Aymeric Augustin <aymeric.augustin@m4x.org> | 2014-09-09 20:55:57 +0200 |
| commit | 9562ffea9719f2b1795e676718c6d433a1f8d4ed (patch) | |
| tree | f0605f4cadb5f6b266c6f8de844185e511283af0 /tests/settings_tests | |
| parent | d26199cb70ffc60fc1f54b87fd0723f62fe793e0 (diff) | |
Avoid the word "stupid".
There's always a better word.
Diffstat (limited to 'tests/settings_tests')
| -rw-r--r-- | tests/settings_tests/tests.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/settings_tests/tests.py b/tests/settings_tests/tests.py index 2dcf62abb5..51bcd114e2 100644 --- a/tests/settings_tests/tests.py +++ b/tests/settings_tests/tests.py @@ -366,18 +366,18 @@ class TrailingSlashURLTests(TestCase): If the value ends in more than one slash, presume they know what they're doing. """ - self.settings_module.MEDIA_URL = '/stupid//' - self.assertEqual('/stupid//', self.settings_module.MEDIA_URL) + self.settings_module.MEDIA_URL = '/wrong//' + self.assertEqual('/wrong//', self.settings_module.MEDIA_URL) - self.settings_module.MEDIA_URL = 'http://media.foo.com/stupid//' - self.assertEqual('http://media.foo.com/stupid//', + self.settings_module.MEDIA_URL = 'http://media.foo.com/wrong//' + self.assertEqual('http://media.foo.com/wrong//', self.settings_module.MEDIA_URL) - self.settings_module.STATIC_URL = '/stupid//' - self.assertEqual('/stupid//', self.settings_module.STATIC_URL) + self.settings_module.STATIC_URL = '/wrong//' + self.assertEqual('/wrong//', self.settings_module.STATIC_URL) - self.settings_module.STATIC_URL = 'http://static.foo.com/stupid//' - self.assertEqual('http://static.foo.com/stupid//', + self.settings_module.STATIC_URL = 'http://static.foo.com/wrong//' + self.assertEqual('http://static.foo.com/wrong//', self.settings_module.STATIC_URL) |
