diff --git a/tests/generic_relations/tests.py b/tests/generic_relations/tests.py
index dab1b8a..6c6663c 100644
a
|
b
|
class GenericRelationsTests(TestCase):
|
405 | 405 | # GenericRelations to models that use multi-table inheritance work. |
406 | 406 | granite = ValuableRock.objects.create(name='granite', hardness=5) |
407 | 407 | ValuableTaggedItem.objects.create(content_object=granite, tag="countertop", value=1) |
| 408 | self.assertEqual(ValuableRock.objects.filter(tags__tag="countertop").count(), 1) |
408 | 409 | granite.delete() # deleting the rock should delete the related tag. |
409 | 410 | self.assertEqual(ValuableTaggedItem.objects.count(), 0) |
410 | 411 | |