Replace assert! with assert_ne! (#1140)
This commit is contained in:
parent
62ff6d9191
commit
637ba8120b
@ -365,7 +365,7 @@ mod tests {
|
|||||||
let different_root = Hash256::from_low_u64_be(1337);
|
let different_root = Hash256::from_low_u64_be(1337);
|
||||||
unset_bit(&mut a_different, 0);
|
unset_bit(&mut a_different, 0);
|
||||||
sign(&mut a_different, 2, genesis_validators_root);
|
sign(&mut a_different, 2, genesis_validators_root);
|
||||||
assert!(a_different.data.beacon_block_root != different_root);
|
assert_ne!(a_different.data.beacon_block_root, different_root);
|
||||||
a_different.data.beacon_block_root = different_root;
|
a_different.data.beacon_block_root = different_root;
|
||||||
|
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
|
@ -687,7 +687,7 @@ where
|
|||||||
AttestationStrategy::SomeValidators(faulty_validators.to_vec()),
|
AttestationStrategy::SomeValidators(faulty_validators.to_vec()),
|
||||||
);
|
);
|
||||||
|
|
||||||
assert!(honest_head != faulty_head, "forks should be distinct");
|
assert_ne!(honest_head, faulty_head, "forks should be distinct");
|
||||||
|
|
||||||
(honest_head, faulty_head)
|
(honest_head, faulty_head)
|
||||||
}
|
}
|
||||||
|
@ -368,7 +368,7 @@ fn delete_blocks_and_states() {
|
|||||||
fork_blocks as usize,
|
fork_blocks as usize,
|
||||||
);
|
);
|
||||||
|
|
||||||
assert!(honest_head != faulty_head, "forks should be distinct");
|
assert_ne!(honest_head, faulty_head, "forks should be distinct");
|
||||||
let head_info = harness.chain.head_info().expect("should get head");
|
let head_info = harness.chain.head_info().expect("should get head");
|
||||||
assert_eq!(head_info.slot, unforked_blocks + fork_blocks);
|
assert_eq!(head_info.slot, unforked_blocks + fork_blocks);
|
||||||
|
|
||||||
|
@ -159,7 +159,7 @@ fn chooses_fork() {
|
|||||||
faulty_fork_blocks,
|
faulty_fork_blocks,
|
||||||
);
|
);
|
||||||
|
|
||||||
assert!(honest_head != faulty_head, "forks should be distinct");
|
assert_ne!(honest_head, faulty_head, "forks should be distinct");
|
||||||
|
|
||||||
let state = &harness.chain.head().expect("should get head").beacon_state;
|
let state = &harness.chain.head().expect("should get head").beacon_state;
|
||||||
|
|
||||||
|
@ -382,8 +382,8 @@ fn check_duties<T: BeaconChainTypes>(
|
|||||||
let slot_proposer = state
|
let slot_proposer = state
|
||||||
.get_beacon_proposer_index(slot, spec)
|
.get_beacon_proposer_index(slot, spec)
|
||||||
.expect("should know proposer");
|
.expect("should know proposer");
|
||||||
assert!(
|
assert_ne!(
|
||||||
slot_proposer != validator_index,
|
slot_proposer, validator_index,
|
||||||
"validator should not have proposal slot in this epoch"
|
"validator should not have proposal slot in this epoch"
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user