Skip to content

Commit 777124e

Browse files
committed
Update tests to check for learn command instead of refine
1 parent bb4e1a6 commit 777124e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/integration/test_install_flow.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def test_install_with_claude(self, mock_claude_project: Path) -> None:
4242
# Verify core commands were created
4343
claude_dir = mock_claude_project / ".claude" / "commands"
4444
assert (claude_dir / "deepwork_jobs.define.md").exists()
45-
assert (claude_dir / "deepwork_jobs.refine.md").exists()
45+
assert (claude_dir / "deepwork_jobs.learn.md").exists()
4646

4747
# Verify command content
4848
define_command = (claude_dir / "deepwork_jobs.define.md").read_text()
@@ -120,7 +120,7 @@ def test_install_is_idempotent(self, mock_claude_project: Path) -> None:
120120

121121
claude_dir = mock_claude_project / ".claude" / "commands"
122122
assert (claude_dir / "deepwork_jobs.define.md").exists()
123-
assert (claude_dir / "deepwork_jobs.refine.md").exists()
123+
assert (claude_dir / "deepwork_jobs.learn.md").exists()
124124

125125

126126
class TestCLIEntryPoint:

0 commit comments

Comments
 (0)