Skip to content

Commit

Permalink
[e2e] Fix excessively verbose output from virtuous test (#3116)
Browse files Browse the repository at this point in the history
  • Loading branch information
marun committed Jun 13, 2024
1 parent c72c21e commit 2b14a72
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/e2e/x/transfer/virtuous.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,9 @@ var _ = e2e.DescribeXChainSerial("[Virtuous Transfer Tx AVAX]", func() {
)
require.NoError(err)
for _, uri := range rpcEps {
tests.Outf("{{green}}metrics at %q:{{/}} %v\n", uri, metricsBeforeTx[uri])
for _, metric := range []string{blksProcessingMetric, blksAcceptedMetric} {
tests.Outf("{{green}}%s at %q:{{/}} %v\n", metric, uri, metricsBeforeTx[uri][metric])
}
}

testBalances := make([]uint64, 0)
Expand Down

0 comments on commit 2b14a72

Please sign in to comment.