Skip to content

Commit 69690e5

Browse files
committed
fixed rho-z needing to be -z + rho
1 parent c12eec2 commit 69690e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/derivatives.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jac = calculate_jacobian(sys)
4343
test_equal(jac[1,1], -1σ)
4444
test_equal(jac[1,2], σ)
4545
test_equal(jac[1,3], 0)
46-
test_equal(jac[2,1], -1z + ρ) # FIXME
46+
test_equal(jac[2,1], ρ - z)
4747
test_equal(jac[2,2], -1)
4848
test_equal(jac[2,3], -1x)
4949
test_equal(jac[3,1], y)

0 commit comments

Comments
 (0)