diff --git a/crates/compiler/solve/tests/uitest.rs b/crates/compiler/solve/tests/uitest.rs index 426751fd19..1c1f7083ac 100644 --- a/crates/compiler/solve/tests/uitest.rs +++ b/crates/compiler/solve/tests/uitest.rs @@ -100,7 +100,7 @@ fn run_test(path: PathBuf) -> Result<(), Failed> { Ok(()) } -const EMIT_HEADER: &str = "# emit:"; +const EMIT_HEADER: &str = "# -emit:"; struct TestCase { infer_options: InferOptions, @@ -115,7 +115,7 @@ struct PrintOptions { impl TestCase { fn parse(mut data: String) -> Result { - // Drop anything following `# emit:` header lines; that's the output. + // Drop anything following `# -emit:` header lines; that's the output. if let Some(drop_at) = data.find(EMIT_HEADER) { data.truncate(drop_at); data.truncate(data.trim_end().len()); diff --git a/crates/compiler/solve/tests/uitest/lambda_set/disjoint_nested_lambdas_result_in_disjoint_parents_issue_4712.txt b/crates/compiler/solve/tests/uitest/lambda_set/disjoint_nested_lambdas_result_in_disjoint_parents_issue_4712.txt index fadd34afde..1165451017 100644 --- a/crates/compiler/solve/tests/uitest/lambda_set/disjoint_nested_lambdas_result_in_disjoint_parents_issue_4712.txt +++ b/crates/compiler/solve/tests/uitest/lambda_set/disjoint_nested_lambdas_result_in_disjoint_parents_issue_4712.txt @@ -26,7 +26,7 @@ parseInput = \{} -> main = parseInput {} == "" -# emit:can_decls +# -emit:can_decls v1 = {} v2 = ""