diff options
author | Namami Shanker <namami2011@gmail.com> | 2022-06-21 17:38:24 +0530 |
---|---|---|
committer | Namami Shanker <namami2011@gmail.com> | 2022-06-23 18:43:19 +0530 |
commit | 02533c5da4b5e4328d49dcafb8d0a5592ae337c7 (patch) | |
tree | 06311ec91bc46b6fa23484c03d7f683e3d53fe01 | |
parent | 55b16bf711c7d1d1e7405320a0ead7d664c1278e (diff) | |
download | numpy-02533c5da4b5e4328d49dcafb8d0a5592ae337c7.tar.gz |
TST: Tighten test_gen_pyf_stdout check
-rw-r--r-- | numpy/f2py/tests/test_f2py2e.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/f2py/tests/test_f2py2e.py b/numpy/f2py/tests/test_f2py2e.py index ef8e46688..2c10f046f 100644 --- a/numpy/f2py/tests/test_f2py2e.py +++ b/numpy/f2py/tests/test_f2py2e.py @@ -116,6 +116,7 @@ def test_gen_pyf_stdout(capfd, hello_world_f90, monkeypatch): f2pycli() out, _ = capfd.readouterr() assert "Saving signatures to file" in out + assert "function hi() ! in " in out def test_gen_pyf_no_overwrite(capfd, hello_world_f90, monkeypatch): |