9627 fix typo in test

This commit is contained in:
Arthur Hanson 2024-07-15 11:58:23 +07:00
parent 3c2392c9c2
commit daccfc32be

View File

@ -1564,7 +1564,7 @@ class VLANGroupTestCase(TestCase, ChangeLoggedFilterSetTests):
params = {'description': ['foobar1', 'foobar2']} params = {'description': ['foobar1', 'foobar2']}
self.assertEqual(self.filterset(params, self.queryset).qs.count(), 2) self.assertEqual(self.filterset(params, self.queryset).qs.count(), 2)
def text_contains_vid(self): def test_contains_vid(self):
params = {'contains_vid': 123} params = {'contains_vid': 123}
self.assertEqual(self.filterset(params, self.queryset).qs.count(), 2) self.assertEqual(self.filterset(params, self.queryset).qs.count(), 2)
params = {'contains_vid': 1} params = {'contains_vid': 1}