Skip to content
Closed
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
6 changes: 5 additions & 1 deletion pygmt/tests/test_basemap.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,11 @@ def test_basemap_frame_sequence_true():
Test for https://github.com/GenericMappingTools/pygmt/issues/3981.
Comment thread
Chuan1937 marked this conversation as resolved.
"""
fig = Figure()
fig.basemap(region=[0, 10, 0, 10], projection="X10c", frame=[True, "WSen"])
fig.basemap(
region=[0, 10, 0, 10],
projection="X10c",
frame=Frame(axes="WSen", axis=Axis(annot=True, tick=True)),
)
return fig


Expand Down
Loading