Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion tests/iotools/test_solaranywhere.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,8 @@ def test_get_solaranywhere_timeout_tgy(solaranywhere_api_key):
@pytest.mark.flaky(reruns=RERUNS, reruns_delay=RERUNS_DELAY)
def test_get_solaranywhere_not_available(solaranywhere_api_key):
# Test if RuntimeError is raised if location in the ocean is requested
with pytest.raises(RuntimeError, match="Tile is outside of our coverage"):
with pytest.raises(RuntimeError,
match="Location is outside of our coverage area"):
pvlib.iotools.get_solaranywhere(
latitude=40, longitude=-70,
api_key=solaranywhere_api_key,
Expand Down
Loading