summaryrefslogtreecommitdiff
path: root/tests/admin_scripts
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2019-01-27 08:30:20 -0800
committerTim Graham <timograham@gmail.com>2019-01-27 17:39:57 -0500
commitce7293bc91e993cd695d15e664126470c401eed6 (patch)
tree4329dcd087d5f04a1ebec42510bcea8c064db873 /tests/admin_scripts
parent20ea68c4fea2beca258634ef026146d1555cc5b7 (diff)
downloaddjango-ce7293bc91e993cd695d15e664126470c401eed6.tar.gz
Refs #23919 -- Replaced codecs.open() with open().
On Python 3, open() handles encodings.
Diffstat (limited to 'tests/admin_scripts')
-rw-r--r--tests/admin_scripts/tests.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/admin_scripts/tests.py b/tests/admin_scripts/tests.py
index 15a18eefee..31e88c959c 100644
--- a/tests/admin_scripts/tests.py
+++ b/tests/admin_scripts/tests.py
@@ -3,7 +3,6 @@ A series of tests to establish that the command-line management tools work as
advertised - especially with regards to the handling of the
DJANGO_SETTINGS_MODULE and default settings.py files.
"""
-import codecs
import os
import re
import shutil
@@ -2178,7 +2177,7 @@ class StartProject(LiveServerTestCase, AdminScriptTestCase):
self.assertNoOutput(err)
self.assertTrue(os.path.isdir(testproject_dir))
path = os.path.join(testproject_dir, 'ticket-18091-non-ascii-template.txt')
- with codecs.open(path, 'r', encoding='utf-8') as f:
+ with open(path, encoding='utf-8') as f:
self.assertEqual(f.read().splitlines(False), [
'Some non-ASCII text for testing ticket #18091:',
'üäö €'])