Skip to content

Commit 422a701

Browse files
committed
TST: revert name collision avoidance in pytables test
1 parent 654c03f commit 422a701

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/io/test_pytables.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2011,7 +2011,7 @@ def check(obj, comparator):
20112011
df['string'] = 'foo'
20122012
df['float322'] = 1.
20132013
df['float322'] = df['float322'].astype('float32')
2014-
df['boolean'] = df['float322'] > 0
2014+
df['bool'] = df['float322'] > 0
20152015
df['time1'] = Timestamp('20130101')
20162016
df['time2'] = Timestamp('20130102')
20172017
check(df, tm.assert_frame_equal)
@@ -2141,7 +2141,7 @@ def test_table_values_dtypes_roundtrip(self):
21412141
df1['string'] = 'foo'
21422142
df1['float322'] = 1.
21432143
df1['float322'] = df1['float322'].astype('float32')
2144-
df1['boolean'] = df1['float32'] > 0
2144+
df1['bool'] = df1['float32'] > 0
21452145
df1['time1'] = Timestamp('20130101')
21462146
df1['time2'] = Timestamp('20130102')
21472147

0 commit comments

Comments
 (0)