Skip to content

Commit 886efa6

Browse files
committed
Fixed Spacing in Test
1 parent d7cf2de commit 886efa6

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

plotly/tests/test_core/test_tools/test_figure_factory.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1371,9 +1371,7 @@ class Test2D_Density(TestCase):
13711371
def test_validate_2D_density(self):
13721372

13731373
# validate that x and y contain only numbers
1374-
13751374
x = [1, 2]
1376-
13771375
y = ['a', 2]
13781376

13791377
pattern = ("All elements of your 'x' and 'y' lists must be numbers.")
@@ -1382,9 +1380,7 @@ def test_validate_2D_density(self):
13821380
tls.FigureFactory.create_2D_density, x, y)
13831381

13841382
# validate that x and y are the same length
1385-
13861383
x2 = [1]
1387-
13881384
y2 = [1, 2]
13891385

13901386
pattern2 = ("Both lists 'x' and 'y' must be the same length.")
@@ -1395,7 +1391,6 @@ def test_validate_2D_density(self):
13951391
def test_2D_density_all_args(self):
13961392

13971393
# check if 2D_density data matches with expected output
1398-
13991394
x = [1, 2]
14001395
y = [2, 4]
14011396

0 commit comments

Comments
 (0)