diff --git a/netbox/extras/tests/test_conditions.py b/netbox/extras/tests/test_conditions.py index 713629112..236c53eaa 100644 --- a/netbox/extras/tests/test_conditions.py +++ b/netbox/extras/tests/test_conditions.py @@ -37,7 +37,7 @@ class ConditionTestCase(TestCase): # 'gt' supports only numeric values Condition('x', 'foo', 'gt') with self.assertRaises(ValueError): - # 'lt' supports only iterable values + # 'in' supports only iterable values Condition('x', 123, 'in') #