diff --git a/asv_bench/benchmarks/timestamp.py b/asv_bench/benchmarks/timestamp.py index 9d7d6d2998a8b..c8a93b09d94c0 100644 --- a/asv_bench/benchmarks/timestamp.py +++ b/asv_bench/benchmarks/timestamp.py @@ -6,10 +6,9 @@ class TimestampProperties(object): goal_time = 0.2 - params = [(None, None), - (pytz.timezone('Europe/Amsterdam'), None), - (None, 'B'), - (pytz.timezone('Europe/Amsterdam'), 'B')] + _tzs = [None, pytz.timezone('Europe/Amsterdam')] + _freqs = [None, 'B'] + params = [_tzs, _freqs] param_names = ['tz', 'freq'] def setup(self, tz, freq):