Skip to content

Commit

Permalink
[python] Trivial renames for some unit-test files
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkerl committed Aug 17, 2024
1 parent bdba3c3 commit 986ca36
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions apis/python/tests/test_dataframe_index_columns.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
],
],
)
Expand Down

0 comments on commit 986ca36

Please sign in to comment.