From 620c4c468b24f72eabb8efcbdd7e3ca0ba9bab65 Mon Sep 17 00:00:00 2001 From: yusyus Date: Sun, 15 Feb 2026 19:32:39 +0300 Subject: [PATCH] test: Update create command help text assertion MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated test to match new concise help description: - Old: 'Create skill from' - New: 'Auto-detects source type' Test Results: 1765 passed, 199 skipped ✅ Co-Authored-By: Claude Sonnet 4.5 --- tests/test_create_integration_basic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_create_integration_basic.py b/tests/test_create_integration_basic.py index fe520f0..d3c1d0a 100644 --- a/tests/test_create_integration_basic.py +++ b/tests/test_create_integration_basic.py @@ -22,7 +22,7 @@ class TestCreateCommandBasic: text=True ) assert result.returncode == 0 - assert 'Create skill from' in result.stdout + assert 'Auto-detects source type' in result.stdout assert 'auto-detected' in result.stdout assert '--help-web' in result.stdout