diff options
author | Ross Barnowski <rossbar@berkeley.edu> | 2022-01-10 13:02:23 -0800 |
---|---|---|
committer | Sebastian Berg <sebastian@sipsolutions.net> | 2022-01-14 20:07:07 -0600 |
commit | 156964d151cf267ed2e032e21af6492143c6c13e (patch) | |
tree | 91ae12607a868770c6a1e164783707b1a7ad126e /numpy/lib/tests | |
parent | 1489805af8ec0f2b27e4f7439bdc4e48acfdaa6a (diff) | |
download | numpy-156964d151cf267ed2e032e21af6492143c6c13e.tar.gz |
rm incorrect comment.
Diffstat (limited to 'numpy/lib/tests')
-rw-r--r-- | numpy/lib/tests/test_io.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/numpy/lib/tests/test_io.py b/numpy/lib/tests/test_io.py index e218ba657..7cc1b7ede 100644 --- a/numpy/lib/tests/test_io.py +++ b/numpy/lib/tests/test_io.py @@ -3158,7 +3158,6 @@ def test_loadtxt_quoted_field(q): [("alpha, x", 2.5), ("beta, y", 4.5), ("gamma, z", 5.0)], dtype=dtype ) - # Test quote param default res = np.loadtxt(txt, dtype=dtype, delimiter=",", quotechar=q) assert_array_equal(res, expected) |