mirror of
https://github.com/django/django.git
synced 2025-08-03 10:34:04 +00:00
Refs #32508 -- Raised TypeError instead of using "assert" on unsupported operations for sliced querysets.
This commit is contained in:
parent
6f5dbe9dbe
commit
ba9a2b7544
9 changed files with 60 additions and 30 deletions
|
@ -130,7 +130,7 @@ class AdvancedTests(TestCase):
|
|||
"""
|
||||
method = DataPoint.objects.all()[:2].update
|
||||
msg = 'Cannot update a query once a slice has been taken.'
|
||||
with self.assertRaisesMessage(AssertionError, msg):
|
||||
with self.assertRaisesMessage(TypeError, msg):
|
||||
method(another_value='another thing')
|
||||
|
||||
def test_update_respects_to_field(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue