Skip to content

Commit 5d810fe

Browse files
committed
fmt and clippy
1 parent d9fe3c9 commit 5d810fe

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

integration_tests/src/lib.rs

+8-2
Original file line numberDiff line numberDiff line change
@@ -5802,11 +5802,17 @@ mod test {
58025802
// equal. Test that this doesn't produce an Err.
58035803
assert_eq!(
58045804
ReplaceResult::Started,
5805-
volume.target_replace(original, replacement.clone()).await.unwrap(),
5805+
volume
5806+
.target_replace(original, replacement.clone())
5807+
.await
5808+
.unwrap(),
58065809
);
58075810
assert_eq!(
58085811
ReplaceResult::VcrMatches,
5809-
volume.target_replace(replacement.clone(), replacement).await.unwrap(),
5812+
volume
5813+
.target_replace(replacement.clone(), replacement)
5814+
.await
5815+
.unwrap(),
58105816
);
58115817
}
58125818

0 commit comments

Comments
 (0)