From ce3425a5cd10fa44b01efd076448f42f2fad8441 Mon Sep 17 00:00:00 2001 From: Samuel Colvin Date: Thu, 12 Sep 2024 17:03:46 +0100 Subject: [PATCH] fix last failing test :fingerscrossed: --- .../core/src/datasource/physical_plan/csv.rs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/datafusion/core/src/datasource/physical_plan/csv.rs b/datafusion/core/src/datasource/physical_plan/csv.rs index 0e51effdf41a..6cd1864deb1d 100644 --- a/datafusion/core/src/datasource/physical_plan/csv.rs +++ b/datafusion/core/src/datasource/physical_plan/csv.rs @@ -1329,15 +1329,15 @@ mod tests { let df = ctx.sql(r#"select * from t1"#).await?.collect().await?; let expected = [ - "+-------+------------------------+", - "| col1 | col2 |", - "+-------+------------------------+", - "| 1 | hello\rworld |", - "| 2 | something\relse |", + "+-------+-----------------------------+", + "| col1 | col2 |", + "+-------+-----------------------------+", + "| 1 | hello\rworld |", + "| 2 | something\relse |", "| 3 | \rmany\rlines\rmake\rgood test\r |", - "| 4 | unquoted |", - "| value | end |", - "+-------+------------------------+", + "| 4 | unquoted |", + "| value | end |", + "+-------+-----------------------------+", ]; crate::assert_batches_eq!(expected, &df); Ok(())