8000 Corrected test assertion from refs #21403. · alex-python/django@e8223b8 · GitHub
[go: up one dir, main page]

Skip to content

Commit e8223b8

Browse files
committed
Corrected test assertion from refs #21403.
1 parent d8182f2 commit e8223b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/generic_relations_regress/tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ def test_annotate(self):
228228
# then wrong results are produced here as the link to b will also match
229229
# (b and hs1 have equal pks).
230230
self.assertEqual(qs.count(), 1)
231-
self.assertEqual(qs[0].links__sum, l.id)
231+
self.assertEqual(qs[0].links__sum, hs1.id)
232232
l.delete()
233233
# Now if we don't have proper left join, we will not produce any
234234
# results at all here.

0 commit comments

Comments
 (0)
0