Skip to content

Commit 22f94a7

Browse files
committed
Corrects wrong function naming.
1 parent 61e8163 commit 22f94a7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_pvsystem.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ def test_PVSystem_ross_celltemp(mocker):
526526
irrads = 1000
527527
winds = None
528528
out = system.get_cell_temperature(irrads, temps, winds, model='ross')
529-
temperature.faiman_rad.assert_called_once_with(irrads, temps, k)
529+
temperature.ross.assert_called_once_with(irrads, temps, k)
530530
assert_allclose(out, 45.8, atol=1e-1)
531531

532532

0 commit comments

Comments
 (0)