Remove disallowed terminations field in table ordering test

This is possible because #19487 was merged.
This commit is contained in:
Jason Novinger 2025-06-04 11:56:55 -05:00
parent 320261432a
commit 269024ddae

View File

@ -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