Skip to content

Commit 269024d

Browse files
committed
Remove disallowed terminations field in table ordering test
This is possible because #19487 was merged.
1 parent 3202614 commit 269024d

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

netbox/vpn/tests/test_tables.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,7 @@ class TunnelTerminationTableTest(TestCase):
99
def test_every_orderable_field_does_not_throw_exception(self):
1010
terminations = TunnelTermination.objects.all()
1111
fake_request = RequestFactory().get("/")
12-
disallowed = {
13-
'actions',
14-
'termination', # TODO: remove this when #19600 is merged
15-
}
12+
disallowed = {'actions'}
1613

1714
orderable_columns = [
1815
column.name for column in TunnelTerminationTable(terminations).columns

0 commit comments

Comments
 (0)