diff options
author | Jon Dufresne <jon.dufresne@gmail.com> | 2019-11-13 06:20:58 -0800 |
---|---|---|
committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2019-12-06 09:57:09 +0100 |
commit | 8aefe1113706b4c1ee1835ee8eb9ee7e335435aa (patch) | |
tree | 701cbc588c7cfaa86f27fbfaa3f262ad6da30fae /tests | |
parent | 82a88d2f48e13ef5d472741d5ed1c183230cfe4c (diff) | |
download | django-8aefe1113706b4c1ee1835ee8eb9ee7e335435aa.tar.gz |
Removed unnecessary __init__.py creation in admin_scripts.tests.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/admin_scripts/tests.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/admin_scripts/tests.py b/tests/admin_scripts/tests.py index dbbb85e714..3dc79dd514 100644 --- a/tests/admin_scripts/tests.py +++ b/tests/admin_scripts/tests.py @@ -46,8 +46,6 @@ class AdminScriptTestCase(SimpleTestCase): # where `/var` is a symlink to `/private/var`. self.test_dir = os.path.realpath(os.path.join(tmpdir.name, 'test_project')) os.mkdir(self.test_dir) - with open(os.path.join(self.test_dir, '__init__.py'), 'w'): - pass def write_settings(self, filename, apps=None, is_dir=False, sdict=None, extra=None): if is_dir: |