Skip to content

Commit 8000adc

Browse files
committed
chore: Fix integration test
1 parent c8dd78c commit 8000adc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/toolbox-core/tests/test_e2e.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ async def test_tool_signature_is_correct(self, toolbox: ToolboxClient):
245245
assert sig.parameters["email"].annotation is str
246246

247247
# The optional parameter should have a default of None
248-
assert sig.parameters["data"].default is "row2"
248+
assert sig.parameters["data"].default is None
249249
assert sig.parameters["data"].annotation is Optional[str]
250250

251251
# The optional parameter should have a default of None

0 commit comments

Comments
 (0)