Signed-off-by: Anton-4 <17049058+Anton-4@users.noreply.github.com>
This commit is contained in:
Anton-4 2025-01-07 19:44:45 +01:00 committed by GitHub
parent f57f041a79
commit 6c09f5eed3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -962,7 +962,7 @@ mod cli_tests {
fn effectful_ignore_result() {
build_platform_host();
let dli_dev = ExecCli::new(
let cli_dev = ExecCli::new(
roc_cli::CMD_DEV,
file_from_root(
"crates/cli/tests/test-projects/effectful/",
@ -972,7 +972,7 @@ mod cli_tests {
let expected_out = "I asked for input and I ignored it. Deal with it! 😎\n";
dli_dev.run().assert_clean_stdout(expected_out);
cli_dev.run().assert_clean_stdout(expected_out);
}
#[test]