diff --git a/tests/regressiontests/queries/models.py b/tests/regressiontests/queries/models.py
index 3649d27..0d28926 100644
|
a
|
b
|
True
|
| 1151 | 1151 | >>> qs = Author.objects.filter(pk__in=subq) |
| 1152 | 1152 | >>> list(qs) |
| 1153 | 1153 | [<Author: a1>, <Author: a2>] |
| | 1154 | |
| 1154 | 1155 | # The subquery result cache should not be populated |
| 1155 | 1156 | >>> subq._result_cache is None |
| 1156 | 1157 | True |
| … |
… |
True
|
| 1159 | 1160 | >>> qs = Author.objects.exclude(pk__in=subq) |
| 1160 | 1161 | >>> list(qs) |
| 1161 | 1162 | [<Author: a3>, <Author: a4>] |
| | 1163 | |
| 1162 | 1164 | # The subquery result cache should not be populated |
| 1163 | 1165 | >>> subq._result_cache is None |
| 1164 | 1166 | True |
| … |
… |
True
|
| 1166 | 1168 | >>> subq = Author.objects.filter(num__lt=3000) |
| 1167 | 1169 | >>> list(Author.objects.filter(Q(pk__in=subq) & Q(name='a1'))) |
| 1168 | 1170 | [<Author: a1>] |
| | 1171 | |
| 1169 | 1172 | # The subquery result cache should not be populated |
| 1170 | 1173 | >>> subq._result_cache is None |
| 1171 | 1174 | True |