From d88adfd73dfae7bee78771ff0e97d8314657e6a0 Mon Sep 17 00:00:00 2001 From: Stephen Chung Date: Fri, 16 Oct 2020 21:26:38 +0800 Subject: [PATCH] Fix test. --- tests/modules.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/modules.rs b/tests/modules.rs index 3259aa07..e43b8e71 100644 --- a/tests/modules.rs +++ b/tests/modules.rs @@ -407,7 +407,7 @@ fn test_module_ast_namespace2() -> Result<(), Box> { const MODULE_TEXT: &str = r#" fn run_function(function) { - function.call() + call(function) } "#;