diff --git a/tests/test_pace.py b/tests/test_pace.py index fe0eedec..19a3e8ac 100644 --- a/tests/test_pace.py +++ b/tests/test_pace.py @@ -46,7 +46,7 @@ def test_map(self): 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") @@ -62,7 +62,7 @@ def test_map(self): m.add("spectral") html = m.to_html() self.assertIsNotNone(m) - # assert "PACE" in html + assert "PACE" in html if __name__ == "__main__":