diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2021-12-05 16:30:05 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-05 16:30:05 -0700 |
commit | d14d2c359fcbd499b73d254f0c20dd1a884ff9a3 (patch) | |
tree | 81edd1df081824acf385c12acafae65c1c381a9e /numpy/f2py/tests/test_quoted_character.py | |
parent | 1bef412560293e67f9cf8c4e7b20a904c46ce41d (diff) | |
parent | 90e20e58eda7547678c6d2a4c121b0317de9c74d (diff) | |
download | numpy-d14d2c359fcbd499b73d254f0c20dd1a884ff9a3.tar.gz |
Merge pull request #20479 from HaoZeke/f2pyTestPath
TST,STY: Clean up F2PY tests for pathlib.Path
Diffstat (limited to 'numpy/f2py/tests/test_quoted_character.py')
-rw-r--r-- | numpy/f2py/tests/test_quoted_character.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/f2py/tests/test_quoted_character.py b/numpy/f2py/tests/test_quoted_character.py index 20c77666c..efb9ad08b 100644 --- a/numpy/f2py/tests/test_quoted_character.py +++ b/numpy/f2py/tests/test_quoted_character.py @@ -26,7 +26,7 @@ Cf2py intent(out) OUT1, OUT2, OUT3, OUT4, OUT5, OUT6 END """ - @pytest.mark.skipif(sys.platform=='win32', - reason='Fails with MinGW64 Gfortran (Issue #9673)') + @pytest.mark.skipif(sys.platform == "win32", + reason="Fails with MinGW64 Gfortran (Issue #9673)") def test_quoted_character(self): - assert_equal(self.module.foo(), (b"'", b'"', b';', b'!', b'(', b')')) + assert_equal(self.module.foo(), (b"'", b'"', b";", b"!", b"(", b")")) |