Skip to content

Commit e6f9b3f

Browse files
committed
CLN: test for is_numeric in block internals tests
1 parent e52b6e8 commit e6f9b3f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pandas/tests/frame/test_block_internals.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -385,6 +385,7 @@ def test_constructor_no_pandas_array(self):
385385
expected = DataFrame({"A": [1, 2, 3]})
386386
tm.assert_frame_equal(result, expected)
387387
assert isinstance(result._mgr.blocks[0], NumpyBlock)
388+
assert result._mgr.blocks[0].is_numeric
388389

389390
def test_add_column_with_pandas_array(self):
390391
# GH 26390

0 commit comments

Comments
 (0)