We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63069b8 commit 34e8f03Copy full SHA for 34e8f03
pandas/tests/arrays/numpy_/test_numpy.py
@@ -22,15 +22,15 @@
22
np.array([True, False], dtype=bool),
23
np.array([0, 1], dtype="datetime64[ns]"),
24
np.array([0, 1], dtype="timedelta64[ns]"),
25
- ]
+ ],
26
)
27
def any_numpy_array(request):
28
"""
29
Parametrized fixture for NumPy arrays with different dtypes.
30
31
This excludes string and bytes.
32
33
- return request.param
+ return request.param.copy()
34
35
36
# ----------------------------------------------------------------------------
0 commit comments