Skip to content

Commit 6f79282

Browse files
committed
32-bit compat
1 parent 56470c3 commit 6f79282

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/extension/test_sparse.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ def test_where_series(self, data, na_value):
267267
cond = np.array([True, True, False, False])
268268
result = ser.where(cond)
269269
# new_dtype is the only difference
270-
new_dtype = SparseDtype('float64', 0.0)
270+
new_dtype = SparseDtype('float', 0.0)
271271
expected = pd.Series(cls._from_sequence([a, a, na_value, na_value],
272272
dtype=new_dtype))
273273
self.assert_series_equal(result, expected)

0 commit comments

Comments
 (0)