Skip to content

Commit 72e0aa6

Browse files
committed
fix nightly
1 parent c643496 commit 72e0aa6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cargo-nextest/src/dispatch.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2459,7 +2459,7 @@ fn log_platform_runner(prefix: &str, runner: &PlatformRunner, styles: &StderrSty
24592459
)
24602460
}
24612461

2462-
fn warn_on_err(thing: &str, err: &(dyn std::error::Error), styles: &StderrStyles) {
2462+
fn warn_on_err(thing: &str, err: &dyn std::error::Error, styles: &StderrStyles) {
24632463
let mut s = String::with_capacity(256);
24642464
swrite!(s, "could not determine {thing}: {err}");
24652465
let mut next_error = err.source();

0 commit comments

Comments
 (0)