File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments