We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3202614 commit 269024dCopy full SHA for 269024d
netbox/vpn/tests/test_tables.py
@@ -9,10 +9,7 @@ class TunnelTerminationTableTest(TestCase):
9
def test_every_orderable_field_does_not_throw_exception(self):
10
terminations = TunnelTermination.objects.all()
11
fake_request = RequestFactory().get("/")
12
- disallowed = {
13
- 'actions',
14
- 'termination', # TODO: remove this when #19600 is merged
15
- }
+ disallowed = {'actions'}
16
17
orderable_columns = [
18
column.name for column in TunnelTerminationTable(terminations).columns
0 commit comments