Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mortenpi committed Jul 10, 2023
1 parent f1cfd39 commit e01516b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/jet.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import JET, JuliaHub
using Test

jet_mode = Symbol(get(ENV, "JULIAHUB_TEST_JET", "typo"))
jet_mode = get(ENV, "JULIAHUB_TEST_JET", "typo")
@info "Running JET.jl in mode=:$(jet_mode)"

# The following filter is used when jet_mode == "custom-filtering"
Expand Down Expand Up @@ -34,7 +34,7 @@ end
)
else
JET.test_package(
"JuliaHub"; target_defined_modules=true, mode=jet_mode, toplevel_logger=nothing
"JuliaHub"; target_defined_modules=true, mode=Symbol(jet_mode), toplevel_logger=nothing
)
end
end

0 comments on commit e01516b

Please sign in to comment.