mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-13 08:44:51 -06:00
Remove disallowed terminations field in table ordering test
This is possible because #19487 was merged.
This commit is contained in:
parent
320261432a
commit
269024ddae
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user