diff --git a/pandas/tests/indexes/numeric/test_numeric.py b/pandas/tests/indexes/numeric/test_numeric.py index 088fcfcd7d75f..676d33d2b0f81 100644 --- a/pandas/tests/indexes/numeric/test_numeric.py +++ b/pandas/tests/indexes/numeric/test_numeric.py @@ -312,7 +312,10 @@ def test_cant_or_shouldnt_cast(self, dtype): def test_view_index(self, simple_index): index = simple_index - msg = "Cannot change data-type for object array" + msg = ( + "Cannot change data-type for array of references.|" + "Cannot change data-type for object array.|" + ) with pytest.raises(TypeError, match=msg): index.view(Index) diff --git a/pandas/tests/indexes/ranges/test_range.py b/pandas/tests/indexes/ranges/test_range.py index 8d41efa586411..727edb7ae30ad 100644 --- a/pandas/tests/indexes/ranges/test_range.py +++ b/pandas/tests/indexes/ranges/test_range.py @@ -375,7 +375,10 @@ def test_cant_or_shouldnt_cast(self, start, stop, step): def test_view_index(self, simple_index): index = simple_index - msg = "Cannot change data-type for object array" + msg = ( + "Cannot change data-type for array of references.|" + "Cannot change data-type for object array.|" + ) with pytest.raises(TypeError, match=msg): index.view(Index) diff --git a/pandas/tests/indexes/test_base.py b/pandas/tests/indexes/test_base.py index 997276ef544f7..484f647c7a8f9 100644 --- a/pandas/tests/indexes/test_base.py +++ b/pandas/tests/indexes/test_base.py @@ -358,7 +358,10 @@ def test_view_with_args_object_array_raises(self, index): with pytest.raises(NotImplementedError, match="i8"): index.view("i8") else: - msg = "Cannot change data-type for object array" + msg = ( + "Cannot change data-type for array of references.|" + "Cannot change data-type for object array.|" + ) with pytest.raises(TypeError, match=msg): index.view("i8") diff --git a/pandas/tests/indexes/test_datetimelike.py b/pandas/tests/indexes/test_datetimelike.py index 0ad5888a44392..e45d11e6286e2 100644 --- a/pandas/tests/indexes/test_datetimelike.py +++ b/pandas/tests/indexes/test_datetimelike.py @@ -88,7 +88,10 @@ def test_view(self, simple_index): result = type(simple_index)(idx) tm.assert_index_equal(result, idx) - msg = "Cannot change data-type for object array" + msg = ( + "Cannot change data-type for array of references.|" + "Cannot change data-type for object array.|" + ) with pytest.raises(TypeError, match=msg): idx.view(type(simple_index)) diff --git a/pandas/tests/indexes/test_old_base.py b/pandas/tests/indexes/test_old_base.py index 871e7cdda4102..9b4470021cc1d 100644 --- a/pandas/tests/indexes/test_old_base.py +++ b/pandas/tests/indexes/test_old_base.py @@ -880,7 +880,10 @@ def test_view(self, simple_index): idx_view = idx.view(dtype) tm.assert_index_equal(idx, index_cls(idx_view, name="Foo"), exact=True) - msg = "Cannot change data-type for object array" + msg = ( + "Cannot change data-type for array of references.|" + "Cannot change data-type for object array.|" + ) with pytest.raises(TypeError, match=msg): # GH#55709 idx.view(index_cls)