Skip to content

Commit c87a058

Browse files
committed
TST: comapre only full dtypes in testing
1 parent dac3711 commit c87a058

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/test_frame.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12191,9 +12191,9 @@ def test_empty_frame_dtypes_ftypes(self):
1219112191
('c', 'float64:dense')])))
1219212192

1219312193
# same but for empty slice of df
12194-
assert_series_equal(df[:0].dtypes, pd.Series(odict([('a', np.int),
12194+
assert_series_equal(df[:0].dtypes, pd.Series(odict([('a', np.int64),
1219512195
('b', np.bool),
12196-
('c', np.float)])))
12196+
('c', np.float64)])))
1219712197
assert_series_equal(df[:0].ftypes, pd.Series(odict([('a', 'int64:dense'),
1219812198
('b', 'bool:dense'),
1219912199
('c', 'float64:dense')])))

0 commit comments

Comments
 (0)