Fix more command tests (#4481)

This commit is contained in:
JT
2022-02-15 10:08:07 -05:00
committed by GitHub
parent 5c1a1be02b
commit 66669d7839
5 changed files with 20 additions and 30 deletions

View File

@ -75,8 +75,6 @@ fn compute_sum_of_table() -> Result<(), String> {
Ok(())
}
// FIXME: jt: needs more work
#[ignore]
#[test]
fn sum_of_a_row_containing_a_table_is_an_error() {
let actual = nu!(
@ -85,5 +83,5 @@ fn sum_of_a_row_containing_a_table_is_an_error() {
);
assert!(actual
.err
.contains("Attempted to compute values that can't be operated on"));
.contains("Attempted to compute the sum of a value that cannot be summed"));
}