Skip to content

Commit 5aa12fe

Browse files
committed
fix bug in test
1 parent 893ac03 commit 5aa12fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/scalar/timestamp/test_arithmetic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def test_addition_subtraction_types(self):
9999
@pytest.mark.parametrize('freq, td, td64', [
100100
('D', timedelta(days=1), np.timedelta64(1, 'D')),
101101
('W', timedelta(weeks=1), np.timedelta64(1, 'W')),
102-
('M', timedelta(months=1), np.timedelta64(1, 'M'))
102+
('M', None, np.timedelta64(1, 'M'))
103103
])
104104
def test_addition_subtraction_preserve_frequency(self, freq, td, td64):
105105
ts = Timestamp('2014-03-05', freq=freq)

0 commit comments

Comments
 (0)