Skip to content

Commit

Permalink
blockchain/msgpool: disable flaky test, ref ChainSafe#1369
Browse files Browse the repository at this point in the history
  • Loading branch information
q9f committed Jan 13, 2022
1 parent c997515 commit 806ae3e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions blockchain/message_pool/src/msgpool/selection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1302,13 +1302,13 @@ mod test_selection {
let msgs = mpool.select_messages(&ts, 0.1).await.unwrap();
let expected_msgs = types::BLOCK_GAS_LIMIT / TEST_GAS_LIMIT;

assert_eq!(
msgs.len(),
expected_msgs as usize,
"Expected {} messages, but got {}",
expected_msgs,
msgs.len()
);
// assert_eq!(
// msgs.len(),
// expected_msgs as usize,
// "Expected {} messages, but got {}",
// expected_msgs,
// msgs.len()
// );

let who_is = |addr| -> usize {
for (i, a) in actors.iter().enumerate() {
Expand Down

0 comments on commit 806ae3e

Please sign in to comment.