mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-13 16:47:34 -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):
|
def test_every_orderable_field_does_not_throw_exception(self):
|
||||||
terminations = TunnelTermination.objects.all()
|
terminations = TunnelTermination.objects.all()
|
||||||
fake_request = RequestFactory().get("/")
|
fake_request = RequestFactory().get("/")
|
||||||
disallowed = {
|
disallowed = {'actions'}
|
||||||
'actions',
|
|
||||||
'termination', # TODO: remove this when #19600 is merged
|
|
||||||
}
|
|
||||||
|
|
||||||
orderable_columns = [
|
orderable_columns = [
|
||||||
column.name for column in TunnelTerminationTable(terminations).columns
|
column.name for column in TunnelTerminationTable(terminations).columns
|
||||||
|
Loading…
Reference in New Issue
Block a user