diff --git a/tests/order_with_respect_to/models.py b/tests/order_with_respect_to/models.py
index 7428183..f7eb0b1 100644
a
|
b
|
class Post(models.Model):
|
46 | 46 | |
47 | 47 | # order_with_respect_to points to a model with a OneToOneField primary key. |
48 | 48 | class Entity(models.Model): |
49 | | pass |
| 49 | class Meta: |
| 50 | app_label = 'order_with_respect_to' # model is shared in contenttypes_tests |
50 | 51 | |
51 | 52 | |
52 | 53 | class Dimension(models.Model): |
53 | 54 | entity = models.OneToOneField('Entity', primary_key=True, on_delete=models.CASCADE) |
54 | 55 | |
| 56 | class Meta: |
| 57 | app_label = 'order_with_respect_to' # model is shared in contenttypes_tests |
| 58 | |
55 | 59 | |
56 | 60 | class Component(models.Model): |
57 | 61 | dimension = models.ForeignKey('Dimension', on_delete=models.CASCADE) |
58 | 62 | |
59 | 63 | class Meta: |
| 64 | app_label = 'order_with_respect_to' # model is shared in contenttypes_tests |
60 | 65 | order_with_respect_to = 'dimension' |