File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,6 @@ def test_step(self):
47
47
plt .close ("all" )
48
48
49
49
def test_scatter (self ):
50
- # TODO: scatter plots are represented through axes.collections. Currently, this is simply ignored and nothing is done.
51
50
x = np .linspace (1 , 100 , 20 )
52
51
y = np .linspace (1 , 100 , 20 )
53
52
with plt .rc_context (rc = RC_PARAMS ):
@@ -82,7 +81,6 @@ def test_bar(self):
82
81
plt .close ("all" )
83
82
84
83
def test_hist (self ):
85
- """creates same test case as bar"""
86
84
x = np .linspace (1 , 100 , 20 )
87
85
y = np .linspace (1 , 100 , 20 )
88
86
with plt .rc_context (rc = RC_PARAMS ):
@@ -149,7 +147,6 @@ def test_scatter3d(self):
149
147
plt .close ("all" )
150
148
151
149
def test_wireframe3D (self ):
152
- """ """
153
150
from mpl_toolkits .mplot3d import axes3d
154
151
155
152
# Grab some test data.
@@ -198,8 +195,6 @@ def test_surface3D(self):
198
195
plt .close ("all" )
199
196
200
197
def test_trisurface3D (self ):
201
- """:param Self:
202
- """
203
198
import matplotlib .pyplot as plt
204
199
import numpy as np
205
200
You can’t perform that action at this time.
0 commit comments