Skip to content

Commit 526034d

Browse files
committed
remove minus sign typo causing tests to fail
1 parent deb7303 commit 526034d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_fitrecipe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ def test_boundsToRestraints():
305305
expected_lower_bound = -1
306306
expected_upper_bound = 1
307307
expected_sigma = 2
308-
recipe.var1.bounds = (-expected_lower_bound, expected_upper_bound)
308+
recipe.var1.bounds = (expected_lower_bound, expected_upper_bound)
309309

310310
# apply restraints from bounds
311311
recipe.boundsToRestraints(sig=expected_sigma, scaled=True)

0 commit comments

Comments
 (0)