Skip to content

Commit 61d8f4f

Browse files
authored
Replace turbo with magma colormap in tests (#195)
turbo was only added in recent versions of matplotlib, so using an older colormap lets us be compatible with older matplotlib.
1 parent 9590805 commit 61d8f4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_image.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def test_mpl_cmap():
113113
assert isinstance(rendered, np.ndarray)
114114
assert rendered.shape == (60, 60, 4)
115115

116-
image.set_cmap("turbo")
116+
image.set_cmap("magma")
117117
rendered2 = image.image_rgba
118118
assert isinstance(rendered2, np.ndarray)
119119
# the colormap has been applied

0 commit comments

Comments
 (0)