Skip to content

Commit

Permalink
Fix a warn that should be a @warn in tests
Browse files Browse the repository at this point in the history
This warning hasn't been triggered in a while, so this has slipped through.
  • Loading branch information
martinholters committed Dec 19, 2024
1 parent e7117c1 commit aa7e9ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,7 @@ end
run!(runner, y, u)
alloc = @allocated run!(runner, y, u)
if alloc > 0
warn("Allocated $alloc in run! of HomotopySolver{SimpleSolver} base ModelRunner")
@warn "Allocated $alloc in run! of HomotopySolver{SimpleSolver} base ModelRunner"
end
end

Expand Down

0 comments on commit aa7e9ed

Please sign in to comment.