summaryrefslogtreecommitdiff
path: root/tests/bulk_create
diff options
context:
space:
mode:
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)