Skip to content

Commit f7e7369

Browse files
committed
fixing reverting wrong change of asv-test
1 parent 6528845 commit f7e7369

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
@@ -133,7 +133,7 @@ class ValueCounts:
133133
param_names = ["N", "dtype"]
134134

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

138138
def time_value_counts(self, N, dtype):
139139
self.s.value_counts()

0 commit comments

Comments
 (0)