Skip to content

Commit 1d24a2c

Browse files
committed
attempt to correct formatter
1 parent d32eaca commit 1d24a2c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/iterative_wrappers.jl

+1
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,7 @@ end
297297
function KrylovKitJL_CG(args...; kwargs...)
298298
KrylovKitJL(args...; KrylovAlg = KrylovKit.CG, kwargs..., isposdef = true)
299299
end
300+
300301
function KrylovKitJL_GMRES(args...; kwargs...)
301302
KrylovKitJL(args...; KrylovAlg = KrylovKit.GMRES, kwargs...)
302303
end

test/basictests.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ end
193193
("CG", KrylovKitJL_CG(kwargs...)),
194194
("GMRES", KrylovKitJL_GMRES(kwargs...)))
195195
@testset "$(alg[1])" begin test_interface(alg[2], prob1, prob2) end
196-
@test alg[2] isa KrylovKitJL
196+
@test alg[2] isa KrylovKitJL
197197
end
198198
end
199199

0 commit comments

Comments
 (0)