From 986ca36c5ba2da590f20312afaf8dddc846a3da9 Mon Sep 17 00:00:00 2001 From: John Kerl Date: Fri, 16 Aug 2024 20:15:57 -0400 Subject: [PATCH] [python] Trivial renames for some unit-test files --- .../tests/test_dataframe_index_columns.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/apis/python/tests/test_dataframe_index_columns.py b/apis/python/tests/test_dataframe_index_columns.py index 7629840603..50da7a0fd2 100644 --- a/apis/python/tests/test_dataframe_index_columns.py +++ b/apis/python/tests/test_dataframe_index_columns.py @@ -1730,55 +1730,55 @@ def test_types_create_errors( "int32-py-list-shaped-out-of-bounds", ["int32"], [[100, 200]], - soma._exception.SOMAError, + soma.SOMAError, ], [ "int16-py-list-shaped-out-of-bounds", ["int16"], [[100, 200]], - soma._exception.SOMAError, + soma.SOMAError, ], [ "int8-py-list-shaped-out-of-bounds", ["int8"], [[10, 20]], - soma._exception.SOMAError, + soma.SOMAError, ], [ "uint64-py-list-shaped-out-of-bounds", ["uint64"], [[100, 200]], - soma._exception.SOMAError, + soma.SOMAError, ], [ "uint32-py-list-shaped-out-of-bounds", ["uint32"], [[100, 200]], - soma._exception.SOMAError, + soma.SOMAError, ], [ "uint32-py-list-shaped-out-of-bounds", ["uint32"], [[100, 200]], - soma._exception.SOMAError, + soma.SOMAError, ], [ "uint8-py-list-shaped-out-of-bounds", ["uint8"], [[10, 20]], - soma._exception.SOMAError, + soma.SOMAError, ], [ "float32-py-list-shaped-out-of-bounds", ["float32"], [[100.0, 200.0]], - soma._exception.SOMAError, + soma.SOMAError, ], [ "float64-py-list-shaped-out-of-bounds", ["float64"], [[100.0, 200.0]], - soma._exception.SOMAError, + soma.SOMAError, ], ], )