Commit 18d7c1ea authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

Simplified the deletions performed by the swappable_models test.

This is required to allow the test to run without error under SQLite in the CI environment.
parent fdb5c98d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -26,8 +26,8 @@ class SwappableModelTests(TestCase):
        "Permissions and content types are not created for a swapped model"

        # Delete all permissions and content_types
        Permission.objects.all().delete()
        ContentType.objects.all().delete()
        Permission.objects.filter(content_type__app_label='swappable_models').delete()
        ContentType.objects.filter(app_label='swappable_models').delete()

        # Re-run syncdb. This will re-build the permissions and content types.
        new_io = StringIO()