From 7eb0a6c473cb87190ccc75cadd2d6ecfc0b391c8 Mon Sep 17 00:00:00 2001 From: Aaron Kable Date: Thu, 8 Jan 2026 18:43:47 +0800 Subject: [PATCH] tests --- allianceauth/framework/tests/test_datatables.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/allianceauth/framework/tests/test_datatables.py b/allianceauth/framework/tests/test_datatables.py index cf7dee4c..3e1a64be 100644 --- a/allianceauth/framework/tests/test_datatables.py +++ b/allianceauth/framework/tests/test_datatables.py @@ -23,10 +23,6 @@ class TestView(DataTablesView): ] class TestDataTables(TestCase): - """ - Tests for get_main_character_from_user - """ - def setUp(self): self.get_params = { 'draw': '1', @@ -90,7 +86,6 @@ class TestDataTables(TestCase): def test_view_default(self): - self.client.force_login(self.user) request = self.factory.get('/fake-url/', data=self.get_params) response = TestView()