From c6cf39547ddf97894dfc7e3bffff2f02e6d3b682 Mon Sep 17 00:00:00 2001 From: Avik Pal Date: Thu, 31 Oct 2024 12:31:36 -0400 Subject: [PATCH] chore: run formatter --- test/core_tests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/core_tests.jl b/test/core_tests.jl index 65ed43ac8..301b0b389 100644 --- a/test/core_tests.jl +++ b/test/core_tests.jl @@ -4,7 +4,7 @@ dataOut = f([1, 2, 3], nothing) + 0.1 * randn(10, 1) resid(x, p) = f(x, p) - dataOut - jac(x, p) = [1:10 .^ 2 1:10 ones(10, 1)] + jac(x, p) = [dataIn .^ 2 dataIn ones(10, 1)] x0 = [1, 1, 1] prob = NonlinearLeastSquaresProblem(resid, x0)