From e2ab14f23da62d1dde99a5f47974c2e09c666892 Mon Sep 17 00:00:00 2001 From: Jeremy Wall Date: Sun, 13 Jan 2019 14:37:25 -0600 Subject: [PATCH] MAINT: Slight tweak to the import test. Demonstrate that you don't have to use parens to get a val from the import expression. --- integration_tests/import_test.ucg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration_tests/import_test.ucg b/integration_tests/import_test.ucg index 9c11740..af3ded0 100644 --- a/integration_tests/import_test.ucg +++ b/integration_tests/import_test.ucg @@ -8,7 +8,7 @@ assert { desc = "include path worked from an imported module", }; -let imported = (import "./libs/test_import.ucg").val; +let imported = import "./libs/test_import.ucg".val; assert { ok = imported == test_mod.imported,