From f8da44d609368c223ce6da94d3017021f975ce24 Mon Sep 17 00:00:00 2001 From: Richard Giliam Date: Tue, 1 Jul 2025 17:40:10 -0700 Subject: [PATCH] Fix pytest import --- tests/test_sliceable_buffer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_sliceable_buffer.py b/tests/test_sliceable_buffer.py index 4d1194cfc..c4e57b6ef 100644 --- a/tests/test_sliceable_buffer.py +++ b/tests/test_sliceable_buffer.py @@ -1,6 +1,6 @@ from typing import NamedTuple, Sequence, Callable -from _pytest.python_api import raises +from pytest import raises from amazon.ion.sliceable_buffer import IncompleteReadError, SliceableBuffer from tests import parametrize