@@ -3111,13 +3111,13 @@ def test_construction_from_ndarray_with_eadtype_mismatched_columns(self):
31113111 with pytest .raises (ValueError , match = msg ):
31123112 DataFrame (arr2 , columns = ["foo" , "bar" ])
31133113
3114- def test_columns_indexes_raise_on_sets (self ):
3114+ # def test_columns_indexes_raise_on_sets(self):
31153115 # GH 47215
3116- data = [[1 , 2 , 3 ], [4 , 5 , 6 ]]
3117- with pytest .raises (ValueError , match = "index cannot be a set" ):
3118- DataFrame (data , index = {"a" , "b" })
3119- with pytest .raises (ValueError , match = "columns cannot be a set" ):
3120- DataFrame (data , columns = {"a" , "b" , "c" })
3116+ # data = [[1, 2, 3], [4, 5, 6]]
3117+ # with pytest.raises(ValueError, match="index cannot be a set"):
3118+ # DataFrame(data, index={"a", "b"})
3119+ # with pytest.raises(ValueError, match="columns cannot be a set"):
3120+ # DataFrame(data, columns={"a", "b", "c"})
31213121
31223122 # TODO: make this not cast to object in pandas 3.0
31233123 @pytest .mark .skipif (
0 commit comments