mirror of
https://github.com/Hopiu/django.git
synced 2026-05-02 12:44:44 +00:00
Merge pull request #2495 from loic/ticket19816
Fixed mistake in tests from commit 2039908. Refs #19816.
This commit is contained in:
commit
9723e999a0
2 changed files with 3 additions and 3 deletions
|
|
@ -376,7 +376,7 @@ class ManyToManyTests(TestCase):
|
|||
# ManyRelatedObjectsDescriptor.__set__. Refs #19816.
|
||||
self.a1.publications = [self.p1, self.p2]
|
||||
|
||||
qs = self.a1.publications.filter(id=self.a1.id)
|
||||
qs = self.a1.publications.filter(title='The Python Journal')
|
||||
self.a1.publications = qs
|
||||
|
||||
self.assertEqual(1, self.a1.publications.count())
|
||||
|
|
@ -388,7 +388,7 @@ class ManyToManyTests(TestCase):
|
|||
# ReverseManyRelatedObjectsDescriptor.__set__. Refs #19816.
|
||||
self.p1.article_set = [self.a1, self.a2]
|
||||
|
||||
qs = self.p1.article_set.filter(id=self.p1.id)
|
||||
qs = self.p1.article_set.filter(headline='Django lets you build Web apps easily')
|
||||
self.p1.article_set = qs
|
||||
|
||||
self.assertEqual(1, self.p1.article_set.count())
|
||||
|
|
|
|||
|
|
@ -92,7 +92,7 @@ class ManyToOneNullTests(TestCase):
|
|||
# ForeignRelatedObjectsDescriptor.__set__. Refs #19816.
|
||||
self.r2.article_set = [self.a2, self.a3]
|
||||
|
||||
qs = self.r2.article_set.filter(id=self.a2.id)
|
||||
qs = self.r2.article_set.filter(headline="Second")
|
||||
self.r2.article_set = qs
|
||||
|
||||
self.assertEqual(1, self.r2.article_set.count())
|
||||
|
|
|
|||
Loading…
Reference in a new issue