From 2781709ea9a0b159c50f2a7bc926cb75088214bf Mon Sep 17 00:00:00 2001 From: Kampfkarren Date: Mon, 22 Aug 2022 14:43:11 -0700 Subject: [PATCH] Uncomment test (that works) --- tests/conformance/stringinterp.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conformance/stringinterp.lua b/tests/conformance/stringinterp.lua index 02a69da8..9bb29a7e 100644 --- a/tests/conformance/stringinterp.lua +++ b/tests/conformance/stringinterp.lua @@ -59,6 +59,6 @@ local function identity(x) end assertEq(identity`text`, "text") --- assertEq(identity`foo{"bar"}`, "foobar") +assertEq(identity`foo{"bar"}`, "foobar") return "OK"