diff options
| author | David Smith <39445562+smithdc1@users.noreply.github.com> | 2021-07-27 09:41:51 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-27 10:41:51 +0200 |
| commit | 1cba3207867fb168788ad6120770d0398b6b2807 (patch) | |
| tree | d5e345b7a46f90a3dc22b3d03949524d73ad197d /tests/null_fk_ordering | |
| parent | 3d9040a50b160f8b4bb580e09f4120d4979fe29e (diff) | |
Refs #32956 -- Changed "afterwards" to "afterward" in docs and comments.
This also removes unnecessary comments with the previous spelling.
AP Stylebook has a short entry to advise the preferred spelling for
"en-us". "Afterwards" is preferred in British English.
Diffstat (limited to 'tests/null_fk_ordering')
| -rw-r--r-- | tests/null_fk_ordering/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/null_fk_ordering/tests.py b/tests/null_fk_ordering/tests.py index 897c03063f..ac3f0f8373 100644 --- a/tests/null_fk_ordering/tests.py +++ b/tests/null_fk_ordering/tests.py @@ -34,7 +34,7 @@ class NullFkOrderingTests(TestCase): Comment.objects.create(post=p2, comment_text='Another second comment') # We have to test this carefully. Some databases sort NULL values before - # everything else, some sort them afterwards. So we extract the ordered list + # everything else, some sort them afterward. So we extract the ordered list # and check the length. Before the fix, this list was too short (some values # were omitted). self.assertEqual(len(list(Comment.objects.all())), 4) |
