From 90fc3f6653e344a1c2a42b7347cb8502d6c6378e Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Tue, 15 Jul 2025 11:11:47 -0400 Subject: [PATCH] Correct comment --- netbox/extras/tests/test_conditions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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') #