File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -3483,19 +3483,19 @@ def test_select_iterator_8014(self):
3483
3483
where = "index >= '%s'" % beg_dt
3484
3484
results = [ s for s in store .select ('df' ,where = where ,chunksize = chunksize ) ]
3485
3485
result = concat (results )
3486
- tm .assert_frame_equal (expected , result )
3486
+ tm .assert_frame_equal (l_expected , result )
3487
3487
3488
3488
# select w/iterator and where clause, single term, end of range
3489
3489
where = "index <= '%s'" % end_dt
3490
3490
results = [ s for s in store .select ('df' ,where = where ,chunksize = chunksize ) ]
3491
3491
result = concat (results )
3492
- tm .assert_frame_equal (expected , result )
3492
+ tm .assert_frame_equal (r_expected , result )
3493
3493
3494
3494
# select w/iterator and where clause, inclusive range
3495
3495
where = "index >= '%s' & index <= '%s'" % (beg_dt , end_dt )
3496
3496
results = [ s for s in store .select ('df' ,where = where ,chunksize = chunksize ) ]
3497
3497
result = concat (results )
3498
- tm .assert_frame_equal (expected , result )
3498
+ tm .assert_frame_equal (b_expected , result )
3499
3499
3500
3500
def test_retain_index_attributes (self ):
3501
3501
You can’t perform that action at this time.
0 commit comments