From cb40c21374b972681c7851a60849987b27fcbae8 Mon Sep 17 00:00:00 2001 From: Richard Feldman Date: Thu, 24 Feb 2022 22:19:48 -0500 Subject: [PATCH] Fix test --- cli/tests/cli_run.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cli/tests/cli_run.rs b/cli/tests/cli_run.rs index fb98fc0232..c91dd0294d 100644 --- a/cli/tests/cli_run.rs +++ b/cli/tests/cli_run.rs @@ -244,9 +244,9 @@ mod cli_run { return; } } - "gui" => { - // Since this one requires opening a window, we do `roc build` on it but don't runt i.t - build_example(&Path::new(example.filename), &["--optimize"]); + "hello-gui" => { + // Since this one requires opening a window, we do `roc build` on it but don't run it. + build_example(&file_name, &["--optimize"]); return; }