mirror of
https://github.com/django/django.git
synced 2025-12-15 21:45:20 +00:00
Fixed #26747 -- Used more specific assertions in the Django test suite.
This commit is contained in:
parent
ea34426ae7
commit
4f336f6652
87 changed files with 406 additions and 406 deletions
|
|
@ -66,7 +66,7 @@ def natural_key_test(format, self):
|
|||
self.assertEqual(books[0].object.title, book1['title'])
|
||||
self.assertEqual(books[0].object.pk, adrian.pk)
|
||||
self.assertEqual(books[1].object.title, book2['title'])
|
||||
self.assertEqual(books[1].object.pk, None)
|
||||
self.assertIsNone(books[1].object.pk)
|
||||
|
||||
|
||||
# Dynamically register tests for each serializer
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue