mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 21:01:05 +00:00
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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user