Skip to content

Commit 8bd2320

Browse files
authored
Add more parameters into .opts() Update test_quadmeshplot.py
Add a second parameter into .opts() in test_quadmesh_with_norm to avoid grouped parameters behavior.
1 parent 1c1563f commit 8bd2320

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

holoviews/tests/plotting/matplotlib/test_quadmeshplot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def test_quadmesh_update_cbar(self):
6262
def test_quadmesh_with_norm(self):
6363
arr = np.array([[0, 1, 2], [3, 4, 5]])
6464

65-
qmesh = hv.QuadMesh(hv.Image(arr)).opts(norm=Normalize())
65+
qmesh = hv.QuadMesh(hv.Image(arr)).opts(norm=Normalize(), cmap="viridis")
6666

6767
# Before PR 6889, getting the plot would raise a ValueError from
6868
# matplotlib because vmin and vmax were passed alongside the norm.

0 commit comments

Comments
 (0)