Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions plotly/matplotlylib/mplexporter/tests/test_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,9 +240,9 @@ def test_legend_dots():
draw line with 3 points
draw 3 markers
opening legend
draw line with 2 points
draw line with 3 points
draw text 'label' None
draw 1 markers
draw 3 markers
draw text 'dots' None
draw path with 13 vertices
closing legend
Expand Down
12 changes: 6 additions & 6 deletions plotly/matplotlylib/mplexporter/tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ def test_linestyle():
linestyles = {
"solid": "none",
"-": "none",
"dashed": "5.550000000000001,2.4000000000000004",
"--": "5.550000000000001,2.4000000000000004",
"dotted": "1.5,2.4749999999999996",
":": "1.5,2.4749999999999996",
"dashdot": "9.600000000000001,2.4000000000000004,1.5,2.4000000000000004",
"-.": "9.600000000000001,2.4000000000000004,1.5,2.4000000000000004",
"dashed": "6,6",
"--": "6,6",
"dotted": "2,2",
":": "2,2",
"dashdot": "4,4,2,4",
"-.": "4,4,2,4",
"": None,
"None": None,
}
Expand Down