Skip to content

Commit 10d8216

Browse files
committed
remove duplicate test
1 parent 7665053 commit 10d8216

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

lib/matplotlib/tests/test_figure.py

-10
Original file line numberDiff line numberDiff line change
@@ -1793,19 +1793,9 @@ def test_suplots_adjust_2():
17931793
fig.subplots_adjust(wspace=0)
17941794
inDict = dict(left=0.1, right=0.7, bottom=0, top=0.9, hspace=0.05)
17951795
fig.subplots_adjust(**inDict)
1796-
inDict['wspace'] = plt.rcParams['figure.subplot.wspace']
17971796
assert fig.subplotpars.to_dict() == inDict
17981797

17991798

1800-
def test_suplots_adjust_plt():
1801-
plt.figure(1)
1802-
plt.subplots_adjust(wspace=0)
1803-
inDict = dict(left=0.1, right=0.7, bottom=0, top=0.9, hspace=0.05)
1804-
plt.subplots_adjust(**inDict)
1805-
inDict['wspace'] = plt.rcParams['figure.subplot.wspace']
1806-
assert plt.gcf().subplotpars.to_dict() == inDict
1807-
1808-
18091799
def test_set_figure():
18101800
fig = plt.figure()
18111801
sfig1 = fig.subfigures()

0 commit comments

Comments
 (0)