Skip to content

Commit fdd168b

Browse files
committed
test
1 parent 4e23680 commit fdd168b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_cli_tools.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,13 +140,13 @@ def test_create_tool_invalid_name(self):
140140
# Test various invalid names
141141
invalid_names = ['TestTool', 'test-tool', 'test tool']
142142
for name in invalid_names:
143-
result = run_cli('tools', 'create', name)
143+
result = run_cli('tools', 'new', name)
144144
self.assertNotEqual(result.returncode, 0)
145145
self.assertIn("must be snake_case", result.stderr)
146146

147147
def test_create_tool_no_project(self):
148-
"""Test creating a tool outside of a project directory"""
148+
"""Test creating a tool outside a project directory"""
149149
# Try to create tool without initializing project
150-
result = run_cli('tools', 'create', 'test_tool')
150+
result = run_cli('tools', 'new', 'test_tool')
151151
self.assertNotEqual(result.returncode, 0)
152152
self.assertIn("Could not find agentstack.json", result.stderr)

0 commit comments

Comments
 (0)