Skip to content

Commit

Permalink
Fixed error message apache#9024
Browse files Browse the repository at this point in the history
  • Loading branch information
Omega359 committed Jan 29, 2024
1 parent bd1afb2 commit 9d245d3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions datafusion-examples/examples/make_date.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,7 @@ async fn main() -> Result<()> {
.collect()
.await;

let expected =
"DataFusion error: Execution error: Unable to parse date from null/empty value";
let expected = "Execution error: Unable to parse date from null/empty value";
assert_contains!(result.unwrap_err().to_string(), expected);

// invalid date values will also result in an error
Expand Down

0 comments on commit 9d245d3

Please sign in to comment.