Skip to content

Commit 278cbb7

Browse files
cleaned up docstrings
1 parent c5a92c1 commit 278cbb7

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

test/test_cleanfigure.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -708,8 +708,6 @@ def test_2D_in_3D(self):
708708

709709

710710
class Test_lineplot:
711-
""" """
712-
713711
def test_line_no_markers(self):
714712
"""test high-level usage for simple example.
715713
Test is successfull if generated tikz code saves correct amount of lines
@@ -740,7 +738,6 @@ def test_no_line_markers(self):
740738
"""test high-level usage for simple example.
741739
Test is successfull if generated tikz code saves correct amount of lines
742740
"""
743-
744741
x = np.linspace(1, 100, 20)
745742
y = np.linspace(1, 100, 20)
746743

@@ -814,11 +811,8 @@ def test_sine(self):
814811

815812

816813
class Test_subplots:
817-
""" """
818-
819814
def test_subplot(self):
820815
"""octave code
821-
822816
```octave
823817
addpath ("../matlab2tikz/src")
824818
@@ -840,8 +834,6 @@ def test_subplot(self):
840834
set(gcf,'Position',[2.5 2.5 5 5])
841835
cleanfigure;
842836
```
843-
844-
845837
"""
846838

847839
x = np.linspace(1, 100, 20)
@@ -883,8 +875,6 @@ def test_segmentVisible():
883875
ylim([20, 80])
884876
cleanfigure;
885877
```
886-
887-
888878
"""
889879

890880
y = np.linspace(1, 100, 20)
@@ -948,7 +938,6 @@ def test_segmentsIntersect():
948938

949939

950940
def test_pixelate():
951-
""" """
952941
xToPix = 49.952
953942
yToPix = 49.952
954943
xData = np.array(
@@ -974,7 +963,6 @@ def test_pixelate():
974963

975964

976965
def test_corners3D():
977-
""" """
978966
xlim = ylim = zlim = np.array([-5, 5])
979967
corners = cleanfigure._corners3D(xlim, ylim, zlim)
980968

0 commit comments

Comments
 (0)