Mass replace ,); pattern (#3580)

This is an artifact left by rustfmt which is not dare to remove the
comma being conservative.
This commit is contained in:
Sergei Shulepov
2021-08-05 19:53:17 +02:00
committed by GitHub
parent 00d6fc5af0
commit 68c03f66f3
46 changed files with 136 additions and 136 deletions
@@ -294,7 +294,7 @@ mod tests {
.await
.unwrap();
assert_eq!(ancestry, expected_ancestry,);
assert_eq!(ancestry, expected_ancestry);
});
let aux_fut = Box::pin(async move {
@@ -367,7 +367,7 @@ mod tests {
.await
.unwrap();
assert_eq!(ancestry, expected_ancestry,);
assert_eq!(ancestry, expected_ancestry);
});
let aux_fut = Box::pin(async move {
@@ -426,7 +426,7 @@ mod tests {
.await
.unwrap();
assert_eq!(ancestry, expected_ancestry,);
assert_eq!(ancestry, expected_ancestry);
});
futures::executor::block_on(test_fut);
@@ -462,7 +462,7 @@ mod tests {
.await
.unwrap();
assert_eq!(ancestry, expected_ancestry,);
assert_eq!(ancestry, expected_ancestry);
});
futures::executor::block_on(test_fut);
@@ -498,11 +498,11 @@ mod tests {
.await
.unwrap();
assert_eq!(after_finality, vec![(head_hash, head.clone())],);
assert_eq!(after_finality, vec![(head_hash, head.clone())]);
assert_eq!(at_finality, Vec::new(),);
assert_eq!(at_finality, Vec::new());
assert_eq!(before_finality, Vec::new(),);
assert_eq!(before_finality, Vec::new());
});
futures::executor::block_on(test_fut);