diff options
author | Developer-Ecosystem-Engineering <65677710+Developer-Ecosystem-Engineering@users.noreply.github.com> | 2022-10-12 15:20:15 -0700 |
---|---|---|
committer | Developer-Ecosystem-Engineering <65677710+Developer-Ecosystem-Engineering@users.noreply.github.com> | 2023-01-04 02:19:18 -0800 |
commit | 4e38cee3ba690511778da3d925934db6737955ee (patch) | |
tree | 918330241c074be8679d7380d38974801af5202c | |
parent | 61c80022c20f78cf2283d8d2336470ae488ea828 (diff) | |
download | numpy-4e38cee3ba690511778da3d925934db6737955ee.tar.gz |
fix comment
-rw-r--r-- | numpy/core/tests/test_umath.py | 2 |
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)) |