File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ def get_tool_description(self) -> Tool:
56
56
"minimum" : 0 ,
57
57
},
58
58
},
59
- "required" : ["command" ],
59
+ "required" : ["command" , "directory" ],
60
60
},
61
61
)
62
62
Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ async def test_list_tools():
27
27
assert tool .inputSchema ["type" ] == "object"
28
28
assert "command" in tool .inputSchema ["properties" ]
29
29
assert "stdin" in tool .inputSchema ["properties" ]
30
- assert "directory" in tool .inputSchema ["properties" ] # New assertion
31
- assert tool .inputSchema ["required" ] == ["command" ]
30
+ assert "directory" in tool .inputSchema ["properties" ]
31
+ assert tool .inputSchema ["required" ] == ["command" , "directory" ]
32
32
33
33
34
34
@pytest .mark .asyncio
You can’t perform that action at this time.
0 commit comments