ReTest.jl
ReTest.jl copied to clipboard
fix integer type mismatch on x86
resolve!
takes an id::Int64
, but fetchtests
tries to assign an integer literal into it, which is an Int32
for x86. This commit explicitly converts the literal into Int64
.