From 8c4ff5540423a9dd088e4366054a3c83a6f36353 Mon Sep 17 00:00:00 2001 From: Ian Butterworth Date: Thu, 3 Mar 2022 23:18:11 -0500 Subject: [PATCH] fix error msg test on 32-bit (#44441) --- test/error.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/error.jl b/test/error.jl index 9b87cb6fff185..913d303496e3e 100644 --- a/test/error.jl +++ b/test/error.jl @@ -93,6 +93,6 @@ end f44319(1) catch e s = sprint(showerror, e) - @test s == "MethodError: no method matching f44319(::Int64)\nClosest candidates are:\n f44319() at none:0" + @test s == "MethodError: no method matching f44319(::Int$(Sys.WORD_SIZE))\nClosest candidates are:\n f44319() at none:0" end end