From a1ed8153433e013cef7f8b08a30fb65c157d3479 Mon Sep 17 00:00:00 2001 From: Kris Brown Date: Fri, 22 Sep 2023 16:23:24 -0700 Subject: [PATCH] missing paren --- test/syntax/Scopes.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/syntax/Scopes.jl b/test/syntax/Scopes.jl index 535e7857..203f2ef9 100644 --- a/test/syntax/Scopes.jl +++ b/test/syntax/Scopes.jl @@ -190,7 +190,7 @@ xz_scope = Scope([bind_x, bind_z]) @test valtype(xz_scope) == String c = ScopeList([xy_scope, xz_scope]) -@test sprint(show, c)[1:2 == "[{" +@test sprint(show, c)[1:2] == "[{" @test_throws ErrorException Scopes.flatten(c)