Skip to content

Commit a2b89c0

Browse files
committed
Fix windows test
1 parent 155f9d1 commit a2b89c0

File tree

1 file changed

+1
-4
lines changed
  • datafusion/core/src/physical_plan/file_format

1 file changed

+1
-4
lines changed

datafusion/core/src/physical_plan/file_format/parquet.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1141,10 +1141,7 @@ mod tests {
11411141
let mut results = parquet_exec.execute(0, task_ctx)?;
11421142
let batch = results.next().await.unwrap();
11431143
// invalid file should produce an error to that effect
1144-
assert_contains!(
1145-
batch.unwrap_err().to_string(),
1146-
"invalid.parquet not found: No such file or directory"
1147-
);
1144+
assert_contains!(batch.unwrap_err().to_string(), "invalid.parquet not found");
11481145
assert!(results.next().await.is_none());
11491146

11501147
Ok(())

0 commit comments

Comments
 (0)