From 794003ed32af3170a30aa48a2b57f13fa0a3d347 Mon Sep 17 00:00:00 2001 From: Kyurae Kim Date: Thu, 17 Aug 2023 20:49:09 +0100 Subject: [PATCH] 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`. --- src/ReTest.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ReTest.jl b/src/ReTest.jl index 386bcb8..6609860 100644 --- a/src/ReTest.jl +++ b/src/ReTest.jl @@ -1485,7 +1485,7 @@ function fetchtests((mod, pat), verbose, module_header, maxidw; static, strict, descwidth = 0 hasbroken = false - id = 1 + id = Int64(1) warned = Ref(false) for ts in tests