diff --git a/tests/integration/test_cli.py b/tests/integration/test_cli.py index 7fe6ee7..11134b6 100644 --- a/tests/integration/test_cli.py +++ b/tests/integration/test_cli.py @@ -15,11 +15,6 @@ class TestCLIIntegration: """Create CLI runner.""" return CliRunner() - @pytest.fixture - def sample_spec_path(self): - """Path to sample spec file.""" - return "examples/petstore.yaml" - def test_validate_command(self, runner, sample_spec_path): """Test validate command.""" result = runner.invoke(cli, ["validate", sample_spec_path]) @@ -56,4 +51,4 @@ class TestCLIIntegration: assert result.exit_code == 0 assert "validate" in result.output.lower() assert "start" in result.output.lower() - assert "generate" in result.output.lower() + assert "generate" in result.output.lower() \ No newline at end of file