Skip to content

Commit e7c34b3

Browse files
committed
broken import fix for tests
1 parent c9ff71e commit e7c34b3

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

plotly/tests/test_optional/test_matplotlylib/test_annotations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
matplotlib.use('Agg')
66
import matplotlib.pyplot as plt
77

8-
from plotly.tests.test_optional import compare_dict, run_fig
8+
from plotly.tests.test_optional.optional_utils import compare_dict, run_fig
99
from .data.annotations import *
1010

1111

plotly/tests/test_optional/test_matplotlylib/test_axis_scales.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
matplotlib.use('Agg')
44
import matplotlib.pyplot as plt
55

6-
from plotly.tests.test_optional import compare_dict, run_fig
6+
from plotly.tests.test_optional.optional_utils import compare_dict, run_fig
77
from .data.axis_scales import *
88

99

plotly/tests/test_optional/test_matplotlylib/test_bars.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
matplotlib.use('Agg')
44
import matplotlib.pyplot as plt
55

6-
from plotly.tests.test_optional import compare_dict, run_fig
6+
from plotly.tests.test_optional.optional_utils import compare_dict, run_fig
77
from .data.bars import *
88

99

plotly/tests/test_optional/test_matplotlylib/test_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
matplotlib.use('Agg')
44
import matplotlib.pyplot as plt
55

6-
from plotly.tests.test_optional import run_fig
6+
from plotly.tests.test_optional.optional_utils import run_fig
77
from .data.data import *
88

99

plotly/tests/test_optional/test_matplotlylib/test_lines.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
matplotlib.use('Agg')
44
import matplotlib.pyplot as plt
55

6-
from plotly.tests.test_optional import compare_dict, run_fig
6+
from plotly.tests.test_optional.optional_utils import compare_dict, run_fig
77
from .data.lines import *
88

99

plotly/tests/test_optional/test_matplotlylib/test_scatter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
matplotlib.use('Agg')
44
import matplotlib.pyplot as plt
55

6-
from plotly.tests.test_optional import compare_dict, run_fig
6+
from plotly.tests.test_optional.optional_utils import compare_dict, run_fig
77
from .data.scatter import *
88

99

plotly/tests/test_optional/test_matplotlylib/test_subplots.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import matplotlib.pyplot as plt
55
from matplotlib.gridspec import GridSpec
66

7-
from plotly.tests.test_optional import compare_dict, run_fig
7+
from plotly.tests.test_optional.optional_utils import compare_dict, run_fig
88
from .data.subplots import *
99

1010

0 commit comments

Comments
 (0)