Skip to content

Commit

Permalink
changed name of hidden function in test
Browse files Browse the repository at this point in the history
  • Loading branch information
eccoope committed Jun 27, 2024
1 parent 50e17da commit b5335c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pvanalytics/tests/features/test_snow.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
def test_get_horizon_mask():
horizon = pd.Series(index=range(0, 360), data=0)
horizon[5:10] = 10
result = snow.get_horizon_mask(horizon, azimuth=np.array([4, 5, 7]),
result = snow._get_horizon_mask(horizon, azimuth=np.array([4, 5, 7]),
elevation=np.array([-1, 11, np.nan]))
expected = np.array([False, True, False])
assert_array_equal(result, expected)
Expand Down

0 comments on commit b5335c6

Please sign in to comment.