We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ab35ee commit 35b4b41Copy full SHA for 35b4b41
pandas/tests/frame/test_timeseries.py
@@ -724,7 +724,8 @@ def test_between_time_raises(self):
724
df.between_time(start_time='00:00', end_time='12:00')
725
726
@pytest.mark.parametrize('axis', [
727
- (), ('index',), ('columns',), ('index', 'columns'), (0,), (1,), (0,1)])
+ (), ('index',), ('columns',), ('index', 'columns'),
728
+ (0, ), (1, ), (0, 1)])
729
def test_between_time_axis(self, axis):
730
# issue 8839
731
rng = date_range('1/1/2000', periods=100, freq='10min')
@@ -743,7 +744,8 @@ def test_between_time_axis(self, axis):
743
744
assert len(selected) == exp_len
745
746
747
748
749
def test_between_time_axis_raises(self, axis):
750
751
0 commit comments