From 269024ddae23de1b916625d47e305db784b1b853 Mon Sep 17 00:00:00 2001 From: Jason Novinger Date: Wed, 4 Jun 2025 11:56:55 -0500 Subject: [PATCH] Remove disallowed terminations field in table ordering test This is possible because #19487 was merged. --- netbox/vpn/tests/test_tables.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/netbox/vpn/tests/test_tables.py b/netbox/vpn/tests/test_tables.py index 76248be5a..0c7a4ae80 100644 --- a/netbox/vpn/tests/test_tables.py +++ b/netbox/vpn/tests/test_tables.py @@ -9,10 +9,7 @@ class TunnelTerminationTableTest(TestCase): def test_every_orderable_field_does_not_throw_exception(self): terminations = TunnelTermination.objects.all() fake_request = RequestFactory().get("/") - disallowed = { - 'actions', - 'termination', # TODO: remove this when #19600 is merged - } + disallowed = {'actions'} orderable_columns = [ column.name for column in TunnelTerminationTable(terminations).columns