Skip to content

Commit 8b795dd

Browse files
committed
fix tests
1 parent cf73630 commit 8b795dd

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

  • datafusion/physical-plan/src/metrics

datafusion/physical-plan/src/metrics/value.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -384,11 +384,10 @@ impl Display for PruningMetrics {
384384
if fully_matched != 0 {
385385
write!(
386386
f,
387-
"{} total → {} matched -> {} fully matched",
388-
total, matched, fully_matched
387+
"{total} total → {matched} matched -> {fully_matched} fully matched",
389388
)
390389
} else {
391-
write!(f, "{} total → {} matched", total, matched)
390+
write!(f, "{total} total → {matched} matched")
392391
}
393392
}
394393
}

0 commit comments

Comments
 (0)