Skip to content

Commit

Permalink
minor fix in test_SloppyCell
Browse files Browse the repository at this point in the history
  • Loading branch information
bcdaniels committed Apr 14, 2022
1 parent 2b234aa commit bb33c16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_SloppyCell.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def test_CTSN(self):
m = fittingProblem.CTSNFittingModel(5,['a'],['b'])
r = m.evaluateVec(np.linspace(0,1,10),'b',[0])
eps = 1e-5
return sum(r**2) < eps
self.assertTrue(sum(r**2) < eps)


if __name__ == '__main__':
Expand Down

0 comments on commit bb33c16

Please sign in to comment.