Skip to content

Commit 58d04b4

Browse files
committed
use a tuple
1 parent d02923f commit 58d04b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pvlib/tests/ivtools/test_sdm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def test_fit_desoto_init_guess(mocker):
9292
alpha_sc=0.005658, beta_voc=-0.13788,
9393
cells_in_series=60, init_guess=init_guess)
9494
optimize.root.assert_called_once_with(mocker.ANY, x0=init_guess_array,
95-
args=specs, **root_args)
95+
args=(specs,), **root_args)
9696

9797

9898
def test_fit_desoto_failure():

0 commit comments

Comments
 (0)