From d7482097d0fc81ab8e1b62e628e83fe7ce8ca60f Mon Sep 17 00:00:00 2001 From: Alin Cruceat Date: Fri, 31 Jan 2025 17:22:27 +0200 Subject: [PATCH] go test fix --- .../digital-cash/tests/digital_cash_scenario_go_test.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/contracts/examples/digital-cash/tests/digital_cash_scenario_go_test.rs b/contracts/examples/digital-cash/tests/digital_cash_scenario_go_test.rs index 7d48e43564..991e772bb7 100644 --- a/contracts/examples/digital-cash/tests/digital_cash_scenario_go_test.rs +++ b/contracts/examples/digital-cash/tests/digital_cash_scenario_go_test.rs @@ -45,8 +45,12 @@ fn whitelist_blacklist_fee_token_go() { } #[test] -fn pay_fee_and_fund_esdt_go() { - world().run("scenarios/pay-fee-and-fund-esdt.scen.json"); +fn pay_fee_and_fund_esdt_single_go() { + world().run("scenarios/pay-fee-and-fund-esdt-single.scen.json"); +} +#[test] +fn pay_fee_and_fund_esdt_multiple_go() { + world().run("scenarios/pay-fee-and-fund-esdt-multiple.scen.json"); } #[test]