File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2011,7 +2011,7 @@ def check(obj, comparator):
2011
2011
df ['string' ] = 'foo'
2012
2012
df ['float322' ] = 1.
2013
2013
df ['float322' ] = df ['float322' ].astype ('float32' )
2014
- df ['boolean ' ] = df ['float322' ] > 0
2014
+ df ['bool ' ] = df ['float322' ] > 0
2015
2015
df ['time1' ] = Timestamp ('20130101' )
2016
2016
df ['time2' ] = Timestamp ('20130102' )
2017
2017
check (df , tm .assert_frame_equal )
@@ -2141,7 +2141,7 @@ def test_table_values_dtypes_roundtrip(self):
2141
2141
df1 ['string' ] = 'foo'
2142
2142
df1 ['float322' ] = 1.
2143
2143
df1 ['float322' ] = df1 ['float322' ].astype ('float32' )
2144
- df1 ['boolean ' ] = df1 ['float32' ] > 0
2144
+ df1 ['bool ' ] = df1 ['float32' ] > 0
2145
2145
df1 ['time1' ] = Timestamp ('20130101' )
2146
2146
df1 ['time2' ] = Timestamp ('20130102' )
2147
2147
You can’t perform that action at this time.
0 commit comments