Skip to content

Commit 687f2d0

Browse files
committed
test: work around missing method error in JET
1 parent 4c4e47b commit 687f2d0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/jobsubmission.jl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1246,7 +1246,10 @@ function submit_job(
12461246
else
12471247
c.env
12481248
end
1249-
args = merge(get(app, :args, Dict()), args)
1249+
args = merge(
1250+
get(app, :args, Dict())::Dict,
1251+
args,
1252+
)
12501253

12511254
projectid = isnothing(c.project) ? nothing : string(c.project)
12521255

0 commit comments

Comments
 (0)