Skip to content

Commit

Permalink
CLN: fix typo in asv eval.Query suite (pandas-dev#24865)
Browse files Browse the repository at this point in the history
  • Loading branch information
qwhelan authored and Pingviinituutti committed Feb 28, 2019
1 parent 75eac19 commit 5e70f76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion asv_bench/benchmarks/eval.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def setup(self):
index = pd.date_range('20010101', periods=N, freq='T')
s = pd.Series(index)
self.ts = s.iloc[halfway]
self.df = pd.DataFrame({'a': np.random.randn(N), 'dates': s},
self.df = pd.DataFrame({'a': np.random.randn(N), 'dates': index},
index=index)
data = np.random.randn(N)
self.min_val = data.min()
Expand Down

0 comments on commit 5e70f76

Please sign in to comment.