Skip to content

Commit 61e8163

Browse files
committed
Adds missing wind_speed=None when testing get_cell_temperature for ross.
1 parent 5998725 commit 61e8163

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/test_pvsystem.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,8 @@ def test_PVSystem_ross_celltemp(mocker):
524524
mocker.spy(temperature, 'ross')
525525
temps = 25
526526
irrads = 1000
527-
out = system.get_cell_temperature(irrads, temps, model='ross')
527+
winds = None
528+
out = system.get_cell_temperature(irrads, temps, winds, model='ross')
528529
temperature.faiman_rad.assert_called_once_with(irrads, temps, k)
529530
assert_allclose(out, 45.8, atol=1e-1)
530531

0 commit comments

Comments
 (0)