Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13ca11f commit 1198453Copy full SHA for 1198453
lib/matplotlib/tests/test_basic.py
@@ -3,6 +3,7 @@
3
import sys
4
5
import matplotlib
6
+from matplotlib.cbook import dedent
7
8
9
def test_simple():
@@ -39,7 +40,7 @@ def test_verbose():
39
40
41
42
def test_lazy_imports():
- source = """
43
+ source = dedent("""
44
45
46
import matplotlib.figure
@@ -50,7 +51,7 @@ def test_lazy_imports():
50
51
assert 'matplotlib._tri' not in sys.modules
52
assert 'matplotlib._qhull' not in sys.modules
53
assert 'matplotlib._contour' not in sys.modules
- """
54
+ """)
55
56
subprocess.check_call([
57
sys.executable,
0 commit comments