Skip to content

Commit

Permalink
Replace (nonexisitent) warn with @warn
Browse files Browse the repository at this point in the history
  • Loading branch information
jlapeyre committed Jun 22, 2020
1 parent d7f95e7 commit d78efa6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions symata_test/sjruntests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ save_biginput_state = Symata.setkerneloptions(:bigint_input, false)
try
runalltests()
catch e
warn("Failed running Symata tests")
@warn "Failed running Symata tests"
rethrow(e)
finally
Symata.setkerneloptions(:bigint_input, save_biginput_state)
Expand All @@ -83,7 +83,7 @@ setkerneloptions(:bigint_input, true)
try
runalltests()
catch
warn("Failed running Symata tests")
@warn "Failed running Symata tests"
finally
setkerneloptions(:bigint_input, save_biginput_state)
end
Expand Down

0 comments on commit d78efa6

Please sign in to comment.