We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2353a4b commit b198edaCopy full SHA for b198eda
tests/test_tools.py
@@ -102,7 +102,8 @@ def test__golden_sect_DataFrame_nans():
102
def test_degrees_to_index_1():
103
"""Test that _degrees_to_index raises an error when something other than
104
'latitude' or 'longitude' is passed."""
105
- with pytest.raises(ValueError, match="coordinate must be"): # invalid value for coordinate argument
+ # invalid value for coordinate argument
106
+ with pytest.raises(ValueError, match="coordinate must be"):
107
tools._degrees_to_index(degrees=22.0, coordinate='width')
108
109
0 commit comments