Skip to content
Merged
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
12 changes: 7 additions & 5 deletions pygmt/tests/test_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
unique_name,
)
from pygmt.helpers.testing import load_static_earth_relief, skip_if_no
from pygmt.params import Axis, Frame


def test_load_static_earth_relief():
Expand Down Expand Up @@ -52,11 +53,12 @@ def test_non_ascii_to_octal():
fig.basemap(
region=[0, 10, 0, 5],
projection="X10c/5c",
frame=[
"xaf+lISOLatin1: fi‰“”¥",
"yaf+lSymbol: αβ∇∋∈",
"WSen+tZapfDingbats: ①❷➂➍✦❝❞",
],
frame=Frame(
axes="WSen",
xaxis=Axis(annot=True, tick=True, label="ISOLatin1: fi‰“”¥"),
yaxis=Axis(annot=True, tick=True, label="Symbol: αβ∇∋∈"),
title="ZapfDingbats: ①❷➂➍✦❝❞",
),
)
return fig

Expand Down
Loading