We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa56578 commit 89ac664Copy full SHA for 89ac664
tests/test_models.py
@@ -42,7 +42,7 @@ def test_input_node(self):
42
self.assertEqual(node_with_value.value, 42)
43
44
def test_input_node_invalid_value_raises(self):
45
- bad_value = (1, 2)
+ bad_value = [(1, 2)]
46
self.assertNotIsInstance(bad_value, JsonPrimitive)
47
with self.assertRaises(ValidationError):
48
PythonWorkflowDefinitionInputNode.model_validate(
0 commit comments