Skip to content

Commit 6a9ebda

Browse files
authored
test: fix stale conftest docstring for the retired native binary (#292) (#293)
The codeanalyzer_backend_path fixture documented the JVM-free native binary (python -m codeanalyzer_java), which no longer exists. The analyzer's default is now the bundled codeanalyzer-*.jar run on a cached JDK. The fixture behaviour is unchanged (still returns None); only the docstring is corrected.
1 parent 7bc1ac5 commit 6a9ebda

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ def analysis_json(analysis_json_fixture) -> str:
6666
def codeanalyzer_backend_path():
6767
"""Backend-path override for the Java analyzer in tests.
6868
69-
Returns None so the analyzer uses its default: the JVM-free native binary shipped in the
70-
``codeanalyzer-java`` PyPI package (``python -m codeanalyzer_java``).
69+
Returns None so the analyzer uses its default: the ``codeanalyzer-*.jar`` bundled under
70+
``cldk/analysis/java/codeanalyzer/jar/``, run on a cached JDK (``[java, -jar, <jar>]``).
7171
"""
7272
return None
7373

0 commit comments

Comments
 (0)