From 1f7139a41dc15bc1fe7545e1357b1ca2371b19c3 Mon Sep 17 00:00:00 2001 From: Volodymyr Buhai Date: Fri, 3 Jan 2025 20:01:49 +0200 Subject: [PATCH] Update e2e_convert_cosmos_coins_test.go --- tests/e2e/e2e_convert_cosmos_coins_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/e2e/e2e_convert_cosmos_coins_test.go b/tests/e2e/e2e_convert_cosmos_coins_test.go index acc181d6..4068719c 100644 --- a/tests/e2e/e2e_convert_cosmos_coins_test.go +++ b/tests/e2e/e2e_convert_cosmos_coins_test.go @@ -39,10 +39,10 @@ func setupConvertToCoinTest( context.Background(), &evmutiltypes.QueryParamsRequest{}, ) - suite.NoError(err) - suite.GreaterOrEqual( + suite.Require().NoError(err, "failed to query evmutil params") + suite.Require().GreaterOrEqual( len(params.Params.AllowedCosmosDenoms), 1, - "0g-chain expected to have at least one AllowedCosmosDenom for ERC20 conversion", + "0g-chain must have at least one AllowedCosmosDenom for ERC20 conversion", ) tokenInfo := params.Params.AllowedCosmosDenoms[0]