File tree 1 file changed +0
-4
lines changed
1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -630,7 +630,6 @@ def test_resample_base(self):
630
630
self .assertTrue (resampled .index .equals (exp_rng ))
631
631
632
632
def test_resample_base_with_timedeltaindex (self ):
633
- print "my tests"
634
633
rng = timedelta_range (start = '0s' , periods = 25 , freq = 's' )
635
634
ts = Series (np .random .randn (len (rng )), index = rng )
636
635
@@ -640,9 +639,6 @@ def test_resample_base_with_timedeltaindex(self):
640
639
exp_without_base = timedelta_range (start = '0s' , end = '25s' , freq = '2s' )
641
640
exp_with_base = timedelta_range (start = '10s' , end = '25s' , freq = '2s' )
642
641
643
- print "exp_with_base: " , exp_with_base
644
- print "with_base: " , with_base .index
645
-
646
642
self .assertTrue (without_base .index .equals (exp_without_base ))
647
643
self .assertTrue (with_base .index .equals (exp_with_base ))
648
644
You can’t perform that action at this time.
0 commit comments