diff options
| author | za <za@python.or.id> | 2016-10-27 14:53:39 +0700 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-11-10 21:30:21 -0500 |
| commit | 321e94fa41b121f65c02119c02098df327bbd569 (patch) | |
| tree | ce5476c191d589aca4b124f841dfbccac8dd299f /tests/basic | |
| parent | 4bb70cbcc60794f515c9bfefeca87b8272d33c0c (diff) | |
Refs #27392 -- Removed "Tests that", "Ensures that", etc. from test docstrings.
Diffstat (limited to 'tests/basic')
| -rw-r--r-- | tests/basic/tests.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/basic/tests.py b/tests/basic/tests.py index 16c9dd9dae..b4acd1ff45 100644 --- a/tests/basic/tests.py +++ b/tests/basic/tests.py @@ -331,7 +331,7 @@ class ModelTest(TestCase): def test_create_relation_with_ugettext_lazy(self): """ - Test that ugettext_lazy objects work when saving model instances + ugettext_lazy objects work when saving model instances through various methods. Refs #10498. """ notlazy = 'test' @@ -640,9 +640,8 @@ class SelectOnSaveTests(TestCase): def test_select_on_save_lying_update(self): """ - Test that select_on_save works correctly if the database - doesn't return correct information about matched rows from - UPDATE. + select_on_save works correctly if the database doesn't return correct + information about matched rows from UPDATE. """ # Change the manager to not return "row matched" for update(). # We are going to change the Article's _base_manager class |
