Skip to content

Commit

Permalink
fix: change expected output
Browse files Browse the repository at this point in the history
  • Loading branch information
timvw committed Mar 27, 2024
1 parent 6f5a2e3 commit ff883a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,13 +107,13 @@ async fn run_with_s3_parquet_file() -> datafusion::common::Result<()> {
.success()
.stdout(
predicate::str::contains(
r#"| date | county | state | fips | cases | deaths |"#,
r#"| date | county | state | fips | cases | deaths |"#,
)
.trim(),
)
.stdout(
predicate::str::contains(
r#"| 2020-01-21 | Snohomish | Washington | 53061 | 1 | 0 |"#,
r#"| 2020-01-21 | Snohomish | Washington | 53061 | 1 | 0 |"#,
)
.trim(),
);
Expand Down

0 comments on commit ff883a7

Please sign in to comment.