diff --git a/compiler/test_gen/src/gen_list.rs b/compiler/test_gen/src/gen_list.rs index 97840d8ce1..5332a98c90 100644 --- a/compiler/test_gen/src/gen_list.rs +++ b/compiler/test_gen/src/gen_list.rs @@ -2358,7 +2358,7 @@ fn list_all() { assert_evals_to!("List.all [] (\\e -> e > 3)", false, bool); assert_evals_to!("List.all [ 1, 2, 3 ] (\\e -> e > 3)", false, bool); assert_evals_to!("List.all [ 1, 2, 4 ] (\\e -> e > 3)", false, bool); - assert_evals_to!("List.all [ 1, 2, 3 ] (\\e -> e >= 1", true, bool); + assert_evals_to!("List.all [ 1, 2, 3 ] (\\e -> e >= 1)", true, bool); } #[test]