We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 511529c + ee91d27 commit 055e9d6Copy full SHA for 055e9d6
slycot/tests/test_exceptions.py
@@ -1,5 +1,5 @@
1
"""
2
-docstring_check.py
+test_exceptions.py
3
4
Copyright 2020 Slycot team
5
@@ -18,10 +18,12 @@
18
MA 02110-1301, USA.
19
20
21
-import pytest
+import os
22
import subprocess
23
import sys
24
25
+import pytest
26
+
27
from slycot.exceptions import raise_if_slycot_error, \
28
SlycotError, SlycotWarning, SlycotParameterError
29
from slycot import _wrapper
@@ -119,5 +121,5 @@ def test_xerbla_override():
119
121
120
122
outlines = out.splitlines()
123
assert len(outlines) == 2
- assert outlines[0] == _wrapper.__file__
124
+ assert os.path.samefile(outlines[0], _wrapper.__file__)
125
assert outlines[1] == "INFO=-1"
0 commit comments