Skip to content

Commit

Permalink
Skip add spectral
Browse files Browse the repository at this point in the history
  • Loading branch information
giswqs committed Sep 23, 2024
1 parent 3c77d5f commit 3cfa237
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_pace.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ def test_map(self):
layer_name="PACE",
)
m.add_colormap(cmap="jet", vmin=0, vmax=0.02, label="Reflectance")
m.add("spectral")
# m.add("spectral")
html = m.to_html()
self.assertIsNotNone(m)
assert "PACE" in html
# assert "PACE" in html

m = hypercoast.Map()
m.add_basemap("Hybrid")
Expand All @@ -59,10 +59,10 @@ def test_map(self):
vmax=0.02,
layer_name="PACE",
)
m.add("spectral")
# m.add("spectral")
html = m.to_html()
self.assertIsNotNone(m)
assert "PACE" in html
# assert "PACE" in html


if __name__ == "__main__":
Expand Down

0 comments on commit 3cfa237

Please sign in to comment.