fixing test

This commit is contained in:
Michael Downey 2021-11-16 18:25:16 -05:00
parent 51ad326d11
commit 81f0f46132

View file

@ -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]