From 838388d3c6ab1e2f278c217660b834bdf4d4288f Mon Sep 17 00:00:00 2001 From: Contributor Date: Fri, 6 Mar 2026 05:28:08 +0000 Subject: [PATCH] tests: fix typo in triton failure message --- tests/llm_translation/test_triton.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/llm_translation/test_triton.py b/tests/llm_translation/test_triton.py index 8a3bbb4661c..b43cd3e4bf7 100644 --- a/tests/llm_translation/test_triton.py +++ b/tests/llm_translation/test_triton.py @@ -34,7 +34,7 @@ def test_split_embedding_by_shape_passes(): ) assert split_output_data == [[1, 2, 3], [4, 5, 6]] except Exception as e: - pytest.fail(f"An exception occured: {e}") + pytest.fail(f"An exception occurred: {e}") def test_split_embedding_by_shape_fails_with_shape_value_error():