summaryrefslogtreecommitdiff
path: root/tests/bulk_create
diff options
context:
space:
mode:
authorNick Pope <nick.pope@flightdataservices.com>2018-12-22 23:11:36 +0000
committerTim Graham <timograham@gmail.com>2018-12-22 18:52:54 -0500
commite626a3f993fc0581a3e0770a3930ac1fc20196cb (patch)
treef8a836026eb9119d565e3fda8a8420b62f7aa6d1 /tests/bulk_create
parent7534e43497fed7714910ccec2a6e8acade8263ca (diff)
downloaddjango-e626a3f993fc0581a3e0770a3930ac1fc20196cb.tar.gz
Renamed Sqlite and Sqlite3 references to SQLite.
Diffstat (limited to 'tests/bulk_create')
-rw-r--r--tests/bulk_create/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/bulk_create/tests.py b/tests/bulk_create/tests.py
index eb7d2a9e28..6f0e324111 100644
--- a/tests/bulk_create/tests.py
+++ b/tests/bulk_create/tests.py
@@ -113,7 +113,7 @@ class BulkCreateTests(TestCase):
Country.objects.bulk_create([valid_country, invalid_country])
def test_batch_same_vals(self):
- # Sqlite had a problem where all the same-valued models were
+ # SQLite had a problem where all the same-valued models were
# collapsed to one insert.
Restaurant.objects.bulk_create([
Restaurant(name='foo') for i in range(0, 2)