Skip to content

Commit

Permalink
Update test/sciml.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Jun 3, 2022
1 parent 89e79e7 commit 36047b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/sciml.jl
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ end

L = AffineOperator(MatrixOperator(D), b)
@test L \ u D \ (u - b)
v=rand(N); @test ldiv!(v, L, u) D \ (u-b)
v=rand(N); @test ldiv!(L, u) D \ (u-b)
v=rand(N); @test ldiv!(v, L, u) D \ (u-b)
v=rand(N); @test ldiv!(L, u) D \ (u-b)
end

@testset "SciMLFunctionOperator" begin
Expand Down

0 comments on commit 36047b2

Please sign in to comment.