MAINT: Slight tweak to the import test.

Demonstrate that you don't have to use parens to get a val from the
import expression.
This commit is contained in:
Jeremy Wall 2019-01-13 14:37:25 -06:00
parent 3cfed0d0e1
commit e2ab14f23d

View File

@ -8,7 +8,7 @@ assert {
desc = "include path worked from an imported module", 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 { assert {
ok = imported == test_mod.imported, ok = imported == test_mod.imported,