Skip to content

Commit 89ac664

Browse files
authored
Update test_models.py
1 parent aa56578 commit 89ac664

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def test_input_node(self):
4242
self.assertEqual(node_with_value.value, 42)
4343

4444
def test_input_node_invalid_value_raises(self):
45-
bad_value = (1, 2)
45+
bad_value = [(1, 2)]
4646
self.assertNotIsInstance(bad_value, JsonPrimitive)
4747
with self.assertRaises(ValidationError):
4848
PythonWorkflowDefinitionInputNode.model_validate(

0 commit comments

Comments
 (0)