Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pandas/tests/frame/test_apply.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

import warnings
import numpy as np
from hypothesis import given
from hypothesis import given, settings
from hypothesis.strategies import composite, dates, integers, sampled_from

from pandas import (notna, DataFrame, Series, MultiIndex, date_range,
Expand Down Expand Up @@ -1157,6 +1157,7 @@ def test_agg_cython_table_raises(self, df, func, expected, axis):
df.agg(func, axis=axis)

@given(index=indices(max_length=5), num_columns=integers(0, 5))
@settings(deadline=1000)
def test_frequency_is_original(self, index, num_columns):
# GH 22150
original = index.copy()
Expand Down