summaryrefslogtreecommitdiff
path: root/tests/dbshell
diff options
context:
space:
mode:
authorMin ho Kim <minho42@gmail.com>2019-07-20 00:45:13 +1000
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-07-19 18:24:06 +0200
commit9f11939dd1477981da2f3a5487d80101faa21230 (patch)
tree7039e25f2e3fb76bba2cc69dab745645fe4a4c36 /tests/dbshell
parentfc1182af01c391ce33d7fcf51c756829c6a11d5b (diff)
downloaddjango-9f11939dd1477981da2f3a5487d80101faa21230.tar.gz
Fixed typos in comments and a test name.
Diffstat (limited to 'tests/dbshell')
-rw-r--r--tests/dbshell/test_postgresql.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/dbshell/test_postgresql.py b/tests/dbshell/test_postgresql.py
index 40d2deae62..7047283bb3 100644
--- a/tests/dbshell/test_postgresql.py
+++ b/tests/dbshell/test_postgresql.py
@@ -105,7 +105,7 @@ class PostgreSqlDbshellCommandTestCase(SimpleTestCase):
)
def test_sigint_handler(self):
- """SIGINT is ignored in Python and passed to psql to abort quries."""
+ """SIGINT is ignored in Python and passed to psql to abort queries."""
def _mock_subprocess_run(*args, **kwargs):
handler = signal.getsignal(signal.SIGINT)
self.assertEqual(handler, signal.SIG_IGN)