Skip to content

Commit d5a65bb

Browse files
committed
updated unittest
1 parent b0c6c88 commit d5a65bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ultraplot/tests/test_axes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ def test_subset_format():
181181
fig, axs = uplt.subplots(nrows=1, ncols=3)
182182
axs[1:].format(title=["a", "b"]) # allowed
183183
# Subset formatting
184-
axs[1:].format(title=["c", "d", "e"]) # allowed but implicit does not use e
184+
axs[1:].format(title=["c", "d", "e"]) # allowed but does not use e
185185
assert axs[-1].get_title() == "d"
186186
# Shorter than number of axs
187187
with pytest.raises(ValueError):

0 commit comments

Comments
 (0)