From d48f35070ff7af1edb3582f15a4f2b4c3384ef93 Mon Sep 17 00:00:00 2001 From: Natalia Mokeeva Date: Mon, 8 Apr 2024 17:58:26 +0200 Subject: [PATCH 1/2] correct error msg in test_view_index --- pandas/tests/indexes/numeric/test_numeric.py | 2 +- pandas/tests/indexes/ranges/test_range.py | 2 +- pandas/tests/indexes/test_base.py | 2 +- pandas/tests/indexes/test_datetimelike.py | 2 +- pandas/tests/indexes/test_old_base.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pandas/tests/indexes/numeric/test_numeric.py b/pandas/tests/indexes/numeric/test_numeric.py index 088fcfcd7d75f..979bf19e31588 100644 --- a/pandas/tests/indexes/numeric/test_numeric.py +++ b/pandas/tests/indexes/numeric/test_numeric.py @@ -312,7 +312,7 @@ 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." 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..f61f4fe7612b1 100644 --- a/pandas/tests/indexes/ranges/test_range.py +++ b/pandas/tests/indexes/ranges/test_range.py @@ -375,7 +375,7 @@ 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." 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..1a7e5e1935eb9 100644 --- a/pandas/tests/indexes/test_base.py +++ b/pandas/tests/indexes/test_base.py @@ -358,7 +358,7 @@ 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." 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..032ff8b57ee07 100644 --- a/pandas/tests/indexes/test_datetimelike.py +++ b/pandas/tests/indexes/test_datetimelike.py @@ -88,7 +88,7 @@ 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." 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..b53573d529331 100644 --- a/pandas/tests/indexes/test_old_base.py +++ b/pandas/tests/indexes/test_old_base.py @@ -880,7 +880,7 @@ 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." with pytest.raises(TypeError, match=msg): # GH#55709 idx.view(index_cls) From 6a31e35f461eebf1b707187b8c422e32102f1145 Mon Sep 17 00:00:00 2001 From: Natalia Mokeeva Date: Mon, 8 Apr 2024 19:05:06 +0200 Subject: [PATCH 2/2] correct err msg --- pandas/tests/indexes/numeric/test_numeric.py | 5 ++++- pandas/tests/indexes/ranges/test_range.py | 5 ++++- pandas/tests/indexes/test_base.py | 5 ++++- pandas/tests/indexes/test_datetimelike.py | 5 ++++- pandas/tests/indexes/test_old_base.py | 5 ++++- 5 files changed, 20 insertions(+), 5 deletions(-) diff --git a/pandas/tests/indexes/numeric/test_numeric.py b/pandas/tests/indexes/numeric/test_numeric.py index 979bf19e31588..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 array of references." + 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 f61f4fe7612b1..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 array of references." + 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 1a7e5e1935eb9..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 array of references." + 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 032ff8b57ee07..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 array of references." + 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 b53573d529331..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 array of references." + 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)