summaryrefslogtreecommitdiff
path: root/tests/staticfiles_tests
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@oscaro.com>2014-09-08 21:16:59 +0200
committerAymeric Augustin <aymeric.augustin@m4x.org>2014-09-09 20:55:57 +0200
commit9562ffea9719f2b1795e676718c6d433a1f8d4ed (patch)
treef0605f4cadb5f6b266c6f8de844185e511283af0 /tests/staticfiles_tests
parentd26199cb70ffc60fc1f54b87fd0723f62fe793e0 (diff)
Avoid the word "stupid".
There's always a better word.
Diffstat (limited to 'tests/staticfiles_tests')
-rw-r--r--tests/staticfiles_tests/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/staticfiles_tests/tests.py b/tests/staticfiles_tests/tests.py
index 1161318a7a..67afd25351 100644
--- a/tests/staticfiles_tests/tests.py
+++ b/tests/staticfiles_tests/tests.py
@@ -73,7 +73,7 @@ class BaseStaticFilesTestCase(object):
self._nonascii_filepath = os.path.join(self.testfiles_path, '\u2297.txt')
with codecs.open(self._nonascii_filepath, 'w', 'utf-8') as f:
f.write("\u2297 in the app dir")
- # And also create the stupid hidden file to dwarf the setup.py's
+ # And also create the magic hidden file to trick the setup.py's
# package data handling.
self._hidden_filepath = os.path.join(self.testfiles_path, '.hidden')
with codecs.open(self._hidden_filepath, 'w', 'utf-8') as f: