From daccfc32be3a42cf96cafc29603eed58b3d91ed0 Mon Sep 17 00:00:00 2001 From: Arthur Hanson Date: Mon, 15 Jul 2024 11:58:23 +0700 Subject: [PATCH] 9627 fix typo in test --- netbox/ipam/tests/test_filtersets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/ipam/tests/test_filtersets.py b/netbox/ipam/tests/test_filtersets.py index 9bcc69cd9..a961c1e84 100644 --- a/netbox/ipam/tests/test_filtersets.py +++ b/netbox/ipam/tests/test_filtersets.py @@ -1564,7 +1564,7 @@ class VLANGroupTestCase(TestCase, ChangeLoggedFilterSetTests): params = {'description': ['foobar1', 'foobar2']} self.assertEqual(self.filterset(params, self.queryset).qs.count(), 2) - def text_contains_vid(self): + def test_contains_vid(self): params = {'contains_vid': 123} self.assertEqual(self.filterset(params, self.queryset).qs.count(), 2) params = {'contains_vid': 1}