Skip to content

Commit

Permalink
Replace non-agg show with draw
Browse files Browse the repository at this point in the history
  • Loading branch information
dcamron committed Aug 6, 2021
1 parent 8bc5bf5 commit 767e13a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/plots/test_declarative.py
Expand Up @@ -1497,7 +1497,7 @@ def test_declarative_plot_geometry_polygons():
pc = PanelContainer()
pc.size = (12, 12)
pc.panels = [panel]
pc.show()
pc.draw()

return pc.figure

Expand Down Expand Up @@ -1536,7 +1536,7 @@ def test_declarative_plot_geometry_lines(ccrs):
pc = PanelContainer()
pc.size = (12, 12)
pc.panels = [panel]
pc.show()
pc.draw()

return pc.figure

Expand Down Expand Up @@ -1576,7 +1576,7 @@ def test_declarative_plot_geometry_points(ccrs):
pc = PanelContainer()
pc.size = (12, 12)
pc.panels = [panel]
pc.show()
pc.draw()

return pc.figure

Expand Down

0 comments on commit 767e13a

Please sign in to comment.