more test fixes (#4499)

* more test fixes

* update multi-os err messages
This commit is contained in:
Darren Schroeder
2022-02-16 12:24:45 -06:00
committed by GitHub
parent 5b6156687e
commit b64ac9eb7b
6 changed files with 40 additions and 34 deletions

View File

@ -71,8 +71,6 @@ fn errors_if_given_unknown_column_name() {
})
}
// FIXME: jt: needs more work
#[ignore]
#[test]
fn errors_if_block_given_evaluates_more_than_one_row() {
Playground::setup("group_by_test_3", |dirs, sandbox| {
@ -94,7 +92,8 @@ fn errors_if_block_given_evaluates_more_than_one_row() {
"#
));
assert!(actual.err.contains("Unknown column"));
assert!(actual.err.contains("value originates here"),);
assert!(actual.err.contains("cannot find column"),);
})
}