Unverified Commit 239c6509 authored by Andronik Ordian's avatar Andronik Ordian Committed by GitHub
Browse files

fix disputes tests (#3974)

parent cfc31ee2
Pipeline #159877 passed with stages
in 45 minutes and 27 seconds
......@@ -88,10 +88,10 @@ fn test_harness<T: Future<Output = VirtualOverseer>>(
let target_hash = case_vars.target_block.clone();
let selection_process = async move {
let best = select_relay_chain
.finality_target_with_fallback(target_hash, Some(target_hash), None)
.finality_target_with_longest_chain(target_hash, target_hash, None)
.await
.unwrap();
finality_target_tx.send(best).unwrap();
finality_target_tx.send(Some(best)).unwrap();
()
};
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment