|
6 | 6 | import pytz
|
7 | 7 |
|
8 | 8 | from pandas.compat import is_platform_little_endian
|
9 |
| -import pandas.util._test_decorators as td |
10 | 9 |
|
11 | 10 | from pandas import (
|
12 | 11 | CategoricalIndex,
|
@@ -120,7 +119,6 @@ def test_from_records_sequencelike(self):
|
120 | 119 | tm.assert_series_equal(result["C"], df["C"])
|
121 | 120 | tm.assert_series_equal(result["E1"], df["E1"].astype("float64"))
|
122 | 121 |
|
123 |
| - @td.skip_array_manager_not_yet_implemented # TODO(ArrayManager) empty from_records |
124 | 122 | def test_from_records_sequencelike_empty(self):
|
125 | 123 | # empty case
|
126 | 124 | result = DataFrame.from_records([], columns=["foo", "bar", "baz"])
|
@@ -217,7 +215,6 @@ def __iter__(self):
|
217 | 215 | expected = DataFrame.from_records(tups)
|
218 | 216 | tm.assert_frame_equal(result, expected)
|
219 | 217 |
|
220 |
| - @td.skip_array_manager_not_yet_implemented # TODO(ArrayManager) empty from_records |
221 | 218 | def test_from_records_len0_with_columns(self):
|
222 | 219 | # GH#2633
|
223 | 220 | result = DataFrame.from_records([], index="foo", columns=["foo", "bar"])
|
@@ -401,7 +398,6 @@ def create_dict(order_id):
|
401 | 398 | result = DataFrame.from_records(documents, index=["order_id", "quantity"])
|
402 | 399 | assert result.index.names == ("order_id", "quantity")
|
403 | 400 |
|
404 |
| - @td.skip_array_manager_not_yet_implemented # TODO(ArrayManager) empty from_records |
405 | 401 | def test_from_records_misc_brokenness(self):
|
406 | 402 | # GH#2179
|
407 | 403 |
|
@@ -440,7 +436,6 @@ def test_from_records_misc_brokenness(self):
|
440 | 436 | )
|
441 | 437 | tm.assert_series_equal(result, expected)
|
442 | 438 |
|
443 |
| - @td.skip_array_manager_not_yet_implemented # TODO(ArrayManager) empty from_records |
444 | 439 | def test_from_records_empty(self):
|
445 | 440 | # GH#3562
|
446 | 441 | result = DataFrame.from_records([], columns=["a", "b", "c"])
|
|
0 commit comments