Skip to content

Commit 5ee2c02

Browse files
committed
revert PR 44999
1 parent 4b69503 commit 5ee2c02

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

pandas/tests/io/json/test_json_table_schema_ext_dtype.py

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -131,9 +131,7 @@ def setup_method(self, method):
131131
}
132132
)
133133

134-
def test_build_date_series(self, using_array_manager):
135-
if using_array_manager:
136-
pytest.skip("Segfault for array manager GH44994")
134+
def test_build_date_series(self):
137135

138136
s = Series(self.da, name="a")
139137
s.index.name = "id"
@@ -159,9 +157,7 @@ def test_build_date_series(self, using_array_manager):
159157

160158
assert result == expected
161159

162-
def test_build_decimal_series(self, using_array_manager):
163-
if using_array_manager:
164-
pytest.skip("Segfault for array manager GH44994")
160+
def test_build_decimal_series(self):
165161

166162
s = Series(self.dc, name="a")
167163
s.index.name = "id"
@@ -237,9 +233,7 @@ def test_build_int64_series(self):
237233

238234
assert result == expected
239235

240-
def test_to_json(self, using_array_manager):
241-
if using_array_manager:
242-
pytest.skip("Segfault for array manager GH44994")
236+
def test_to_json(self):
243237

244238
df = self.df.copy()
245239
df.index.name = "idx"

0 commit comments

Comments
 (0)