@@ -1295,14 +1295,14 @@ def check_col(key,name,size):
12951295 'string2=foo' ), Term ('A>0' ), Term ('B<0' )])
12961296 expected = df_new [(df_new .string == 'foo' ) & (
12971297 df_new .string2 == 'foo' ) & (df_new .A > 0 ) & (df_new .B < 0 )]
1298- tm .assert_frame_equal (result , expected )
1298+ tm .assert_frame_equal (result , expected , check_index_type = False )
12991299
13001300 # yield an empty frame
13011301 result = store .select ('df' , [Term ('string=foo' ), Term (
13021302 'string2=cool' )])
13031303 expected = df_new [(df_new .string == 'foo' ) & (
13041304 df_new .string2 == 'cool' )]
1305- tm .assert_frame_equal (result , expected )
1305+ tm .assert_frame_equal (result , expected , check_index_type = False )
13061306
13071307 with ensure_clean_store (self .path ) as store :
13081308 # doc example
@@ -1321,13 +1321,13 @@ def check_col(key,name,size):
13211321 result = store .select ('df_dc' , [Term ('B>0' )])
13221322
13231323 expected = df_dc [df_dc .B > 0 ]
1324- tm .assert_frame_equal (result , expected )
1324+ tm .assert_frame_equal (result , expected , check_index_type = False )
13251325
13261326 result = store .select (
13271327 'df_dc' , ['B > 0' , 'C > 0' , 'string == foo' ])
13281328 expected = df_dc [(df_dc .B > 0 ) & (df_dc .C > 0 ) & (
13291329 df_dc .string == 'foo' )]
1330- tm .assert_frame_equal (result , expected )
1330+ tm .assert_frame_equal (result , expected , check_index_type = False )
13311331
13321332 with ensure_clean_store (self .path ) as store :
13331333 # doc example part 2
0 commit comments