Skip to content

Commit

Permalink
fix the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
amtoine committed Apr 3, 2024
1 parent 85cdaeb commit 92d0f3f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/config/parsing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,8 @@ mod tests {
) {
assert!(result.is_err());
let err = result.err().unwrap();
assert_eq!(err.label, "invalid config");
assert_eq!(err.labels.len(), 1);
assert_eq!(err.labels[0].text, "invalid config");
assert_eq!(err.msg, format!("`$.{}` {}", cell_path, expected));
}

Expand Down

0 comments on commit 92d0f3f

Please sign in to comment.