Skip to content

Commit 96b9276

Browse files
committed
Fix type check in test
1 parent 7def64e commit 96b9276

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/python/unit/test_types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def test_string_list_parameter():
1212
description="List of strings",
1313
default_value=["label1", "label2", "label3"],
1414
)
15-
assert str_list.value_type == str
15+
assert str_list.value_type is str
1616

1717
parsed_list = str_list.from_str("1 2 3")
1818

0 commit comments

Comments
 (0)