Skip to content

Commit

Permalink
fix zombie_coin_validate_dex_fee docker test
Browse files Browse the repository at this point in the history
  • Loading branch information
borngraced committed Mar 6, 2025
1 parent a1d5575 commit b795d88
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions mm2src/mm2_main/tests/docker_tests/z_coin_docker_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,6 @@ async fn zombie_coin_send_dex_fee() {
drop(_lock);
}

// TODO: fix test
#[ignore]
#[tokio::test(flavor = "multi_thread")]
async fn zombie_coin_validate_dex_fee() {
let _lock = TEST_MUTEX.lock().await;
Expand All @@ -188,7 +186,7 @@ async fn zombie_coin_validate_dex_fee() {
expected_sender: &[],
fee_addr: &[],
dex_fee: &DexFee::Standard(MmNumber::from("0.001")),
min_block_number: 10,
min_block_number: 4,
uuid: &[1; 16],
};
// Invalid amount should return an error
Expand Down Expand Up @@ -234,7 +232,7 @@ async fn zombie_coin_validate_dex_fee() {
expected_sender: &[],
fee_addr: &[],
dex_fee: &DexFee::Standard(MmNumber::from("0.01")),
min_block_number: 10,
min_block_number: 20,
uuid: &[1; 16],
};
coin.validate_fee(validate_fee_args).await.unwrap();
Expand Down

0 comments on commit b795d88

Please sign in to comment.