diff --git a/aleksis/core/tests/models/test_openid.py b/aleksis/core/tests/models/test_openid.py
deleted file mode 100644
index 3c87432dd024f7ac2f8bc2a287cb13c359aa9490..0000000000000000000000000000000000000000
--- a/aleksis/core/tests/models/test_openid.py
+++ /dev/null
@@ -1,15 +0,0 @@
-import pytest
-from oauth2_provider.models import Application
-
-pytestmark = pytest.mark.django_db
-
-
-def test_application_create():
-    _application = Application.objects.create(
-        name="Test Application",
-        redirect_uris="https://example.com/redirect https://example.de/redirect",
-        client_type="public",
-        authorization_grant_type="authorization-code",
-    )
-
-    assert _application.name == "Test Application"