Skip to content

Commit 7688269

Browse files
authored
e2e: fix error in reporting (#21447)
1 parent 6a33c47 commit 7688269

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

test/appium/tests/critical/test_wallet.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -240,12 +240,10 @@ def test_wallet_balance_mainnet(self):
240240
real_balance = {}
241241
for asset in expected_balances[network]:
242242
real_balance[asset] = self.wallet_view.get_asset(asset).get_amount()
243-
self.wallet_view.just_fyi("real on %s %s" % (network, str(real_balance)))
244-
self.wallet_view.just_fyi("real on %s %s" % (network, str(expected_balances[network])))
245243
for asset in expected_balances[network]:
246244
if real_balance[asset] != expected_balances[network][asset]:
247245
self.errors.append("For the %s the wrong value %s is shown, expected %s on %s" %
248-
(asset, real_balance[asset], self.total_balance[asset], network))
246+
(asset, real_balance[asset], expected_balances[network][asset], network))
249247
self.wallet_view.select_network(network)
250248

251249
self.errors.verify_no_errors()

0 commit comments

Comments
 (0)