From 582872ba023729dad9fe7423e49b9dbb088f5922 Mon Sep 17 00:00:00 2001 From: Shuhei Kadowaki Date: Wed, 28 Feb 2024 14:47:49 +0900 Subject: [PATCH] fix the show.jl test case --- test/show.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/show.jl b/test/show.jl index 064ae76b6fe1f..7aa0d5adbb0c5 100644 --- a/test/show.jl +++ b/test/show.jl @@ -1263,7 +1263,7 @@ let repr = sprint(dump, :(x = 1)) @test repr == "Expr\n head: Symbol =\n args: Array{Any}((2,))\n 1: Symbol x\n 2: $Int 1\n" end let repr = sprint(dump, Pair{String,Int64}) - @test repr == "Pair{String, Int64} <: Any\n first::String\n second::Int64\n" + @test repr == "Pair{String, Int64} <: Any\n const first::String\n const second::Int64\n" end let repr = sprint(dump, Tuple) @test repr == "Tuple <: Any\n"