From 28c37d4e196a220fb9e5ebda6d79aa80d1fd154b Mon Sep 17 00:00:00 2001 From: Anatoliy Talamanov Date: Thu, 2 Jan 2025 18:33:03 +0000 Subject: [PATCH] Update tests/python_tests/test_llm_pipeline_static.py Co-authored-by: Ilya Lavrenov --- tests/python_tests/test_llm_pipeline_static.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/python_tests/test_llm_pipeline_static.py b/tests/python_tests/test_llm_pipeline_static.py index 5c7f07fcbb..81ce82793c 100644 --- a/tests/python_tests/test_llm_pipeline_static.py +++ b/tests/python_tests/test_llm_pipeline_static.py @@ -177,7 +177,7 @@ def test_unsupported_sampling_raise_error(generation_config): prompt = 'What is OpenVINO?' pipe = ov_genai.LLMPipeline(model_path, "NPU", **common_config) with pytest.raises(RuntimeError): - pipe.generate(prompt, **generation_config) + pipe.generate(prompt, generation_config) @pytest.mark.skipif(sys.platform in ["darwin", "linux"], reason="Not supposed to work on mac. Segfault on linux CI")