Skip to content

Commit 54926e6

Browse files
committed
Fix coverage generation
1 parent fccf244 commit 54926e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/process/artifact.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ impl Debug for Artifact {
2626
match *self {
2727
Self::ChangeState(state) => write!(f, "ChangeState({state:?})"),
2828
Self::EnqueueResize => write!(f, "EnqueueResize"),
29-
Self::Error(ref err, state) => write!(f, "Error({err:?}, {state:?})"),
29+
Self::Error(ref err, state) => write!(f, "Error({err}, {state:?})"),
3030
Self::Event(event) => write!(f, "Event({event:?})"),
3131
Self::ExitStatus(status) => write!(f, "ExitStatus({status:?})"),
3232
Self::ExternalCommand((ref command, ref args)) => write!(f, "ExternalCommand({command:?}, {args:?})"),

0 commit comments

Comments
 (0)