summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDeveloper-Ecosystem-Engineering <65677710+Developer-Ecosystem-Engineering@users.noreply.github.com>2022-10-12 15:20:15 -0700
committerDeveloper-Ecosystem-Engineering <65677710+Developer-Ecosystem-Engineering@users.noreply.github.com>2023-01-04 02:19:18 -0800
commit4e38cee3ba690511778da3d925934db6737955ee (patch)
tree918330241c074be8679d7380d38974801af5202c
parent61c80022c20f78cf2283d8d2336470ae488ea828 (diff)
downloadnumpy-4e38cee3ba690511778da3d925934db6737955ee.tar.gz
fix comment
-rw-r--r--numpy/core/tests/test_umath.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/tests/test_umath.py b/numpy/core/tests/test_umath.py
index 7963d228f..47cf0c276 100644
--- a/numpy/core/tests/test_umath.py
+++ b/numpy/core/tests/test_umath.py
@@ -1770,7 +1770,7 @@ class TestFPClass:
assert_equal(np.isinf(ncontig_in), inf[1::3])
assert_equal(np.signbit(ncontig_in), sign[1::3])
assert_equal(np.isfinite(ncontig_in), finite[1::3])
- # Try with split
+ # contig in, contig out, nd stride
data_split = np.array(np.array_split(data, 2))
nan_split = np.array(np.array_split(nan, 2))
inf_split = np.array(np.array_split(inf, 2))