From abba79027df39eb01ced476fd99d55303a7234e4 Mon Sep 17 00:00:00 2001 From: Rahul Krishna Date: Wed, 22 Jul 2026 17:39:02 -0400 Subject: [PATCH] test: fix stale conftest docstring for the retired native binary (#292) 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. --- tests/conftest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index 5f3c0f1..1883712 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -66,8 +66,8 @@ def analysis_json(analysis_json_fixture) -> str: def codeanalyzer_backend_path(): """Backend-path override for the Java analyzer in tests. - Returns None so the analyzer uses its default: the JVM-free native binary shipped in the - ``codeanalyzer-java`` PyPI package (``python -m codeanalyzer_java``). + Returns None so the analyzer uses its default: the ``codeanalyzer-*.jar`` bundled under + ``cldk/analysis/java/codeanalyzer/jar/``, run on a cached JDK (``[java, -jar, ]``). """ return None