Skip to content

Commit 83d3233

Browse files
committed
fixing reverting wrong change of asv-test
1 parent 6ead83c commit 83d3233

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

asv_bench/benchmarks/series_methods.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ class ValueCounts:
146146
param_names = ["N", "dtype"]
147147

148148
def setup(self, N, dtype):
149-
self.s = Series(np.random.randint(0, N, size=10 * N)).astype("object")
149+
self.s = Series(np.random.randint(0, N, size=10 * N)).astype(dtype)
150150

151151
def time_value_counts(self, N, dtype):
152152
self.s.value_counts()

0 commit comments

Comments
 (0)