Skip to content

Commit 3f1ff12

Browse files
committed
FIx a typo
1 parent 7eb8c16 commit 3f1ff12

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/sparse_hessian.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
function sparse_hessian(backend, kw)
2-
@testset "Basic Hessian derivative with backend=$(backend) and T=$(T)" for T in (Float32, Float64),
2+
@testset "Basic Hessian derivative with backend=$(backend) and T=$(T)" for T in (Float32, Float64)
33
c!(cx, x) = begin
44
cx[1] = x[1] - 1
55
cx[2] = 10 * (x[2] - x[1]^2)

test/sparse_hessian_nls.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
function sparse_hessian_nls(backend, kw)
2-
@testset "Basic Hessian of residual derivative with backend=$(backend) and T=$(T)" for T in (Float32, Float64),
2+
@testset "Basic Hessian of residual derivative with backend=$(backend) and T=$(T)" for T in (Float32, Float64)
33
F!(Fx, x) = begin
44
Fx[1] = x[1] - 1
55
Fx[2] = 10 * (x[2] - x[1]^2)

0 commit comments

Comments
 (0)