This is an automated email from the ASF dual-hosted git repository. xtsong pushed a commit to branch release-0.2 in repository https://gitbox.apache.org/repos/asf/flink-agents.git
commit db38b44daeb340736d75984d3fa611af3ab37b04 Author: youjin <[email protected]> AuthorDate: Tue Jan 27 16:08:42 2026 +0800 [hotfix] Correct the test name of vector_store_cross_language_test --- .../vector_store_cross_language_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/flink_agents/e2e_tests/e2e_tests_resource_cross_language/vector_store_cross_language_test.py b/python/flink_agents/e2e_tests/e2e_tests_resource_cross_language/vector_store_cross_language_test.py index f47f4f5d..ea0930ff 100644 --- a/python/flink_agents/e2e_tests/e2e_tests_resource_cross_language/vector_store_cross_language_test.py +++ b/python/flink_agents/e2e_tests/e2e_tests_resource_cross_language/vector_store_cross_language_test.py @@ -51,7 +51,7 @@ os.environ["PYTHONPATH"] = sysconfig.get_paths()["purelib"] @pytest.mark.skipif(client is None or ES_HOST is None, reason="Ollama client or Elasticsearch host is missing.") @pytest.mark.parametrize("embedding_type", ["JAVA", "PYTHON"]) -def test_java_embedding_model_integration(tmp_path: Path, embedding_type: str) -> None: # noqa: D103 +def test_java_vector_store_integration(tmp_path: Path, embedding_type: str) -> None: # noqa: D103 os.environ["EMBEDDING_TYPE"] = embedding_type env = StreamExecutionEnvironment.get_execution_environment()
