tests: fix typo in triton failure message

This commit is contained in:
Contributor 2026-03-06 05:28:08 +00:00
parent 8523bb6b48
commit 838388d3c6

View file

@ -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():