summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorEric Boersma <eric.boersma@gmail.com>2013-09-05 18:23:48 -0400
committerTim Graham <timograham@gmail.com>2013-09-05 20:14:58 -0400
commit4d13cc56de46ccfc89e9f1381ba4f194070bbdb7 (patch)
tree5ee6093dd8e9c4d1beb5df46cb16997dad59d6c2 /tests
parent93dd31cadfb5f02352740aac32bc2f6cdf923b48 (diff)
Fixed #21035 -- Changed docs to treat the acronym SQL phonetically.
The documentation and comments now all use 'an' to refer to the word SQL and not 'a'.
Diffstat (limited to 'tests')
-rw-r--r--tests/backends/tests.py2
-rw-r--r--tests/test_runner/tests.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/backends/tests.py b/tests/backends/tests.py
index 64f90996d2..e00cdf94ce 100644
--- a/tests/backends/tests.py
+++ b/tests/backends/tests.py
@@ -403,7 +403,7 @@ class EscapingChecks(TestCase):
self.assertEqual(cursor.fetchall()[0], ('%', '%d'))
@unittest.skipUnless(connection.vendor == 'sqlite',
- "This is a sqlite-specific issue")
+ "This is an sqlite-specific issue")
def test_sqlite_parameter_escaping(self):
#13648: '%s' escaping support for sqlite3
cursor = connection.cursor()
diff --git a/tests/test_runner/tests.py b/tests/test_runner/tests.py
index 7aefa4e077..00b5e9c978 100644
--- a/tests/test_runner/tests.py
+++ b/tests/test_runner/tests.py
@@ -246,7 +246,7 @@ class Sqlite3InMemoryTestDbs(TestCase):
available_apps = []
@unittest.skipUnless(all(db.connections[conn].vendor == 'sqlite' for conn in db.connections),
- "This is a sqlite-specific issue")
+ "This is an sqlite-specific issue")
def test_transaction_support(self):
"""Ticket #16329: sqlite3 in-memory test databases"""
old_db_connections = db.connections