Skip to content

Commit

Permalink
fix: Correct typo in QueryResultMismatch display (#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
nokome committed Dec 21, 2022
1 parent 138db71 commit 8693603
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sqllogictest/src/runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ pub enum TestErrorKind {
},
// Remember to also update [`TestErrorKindDisplay`] if this message is changed.
#[error(
"query result mismatch:\n[SQL] {sql}\n[Diff] (-excepted|+actual)\n{}",
"query result mismatch:\n[SQL] {sql}\n[Diff] (-expected|+actual)\n{}",
difference::Changeset::new(.expected, .actual, "\n").diffs.iter().format_with("\n", |diff, f| format_diff(diff, f, false))
)]
QueryResultMismatch {
Expand Down

0 comments on commit 8693603

Please sign in to comment.