e2e: disabled activity verification in wallet tests
This commit is contained in:
parent
9f84a7b912
commit
59374543ef
|
@ -144,14 +144,15 @@ class TestWalletMultipleDevice(MultipleSharedDeviceTestCase):
|
||||||
self._check_balances_after_tx(amount_to_send, sender_balance, receiver_balance, eth_amount_sender,
|
self._check_balances_after_tx(amount_to_send, sender_balance, receiver_balance, eth_amount_sender,
|
||||||
eth_amount_receiver)
|
eth_amount_receiver)
|
||||||
|
|
||||||
self.loop.run_until_complete(
|
# ToDo: enable when issues 20807 and 20808 are fixed
|
||||||
run_in_parallel(((self._check_last_transaction_in_activity, {'wallet_view': self.wallet_1,
|
# self.loop.run_until_complete(
|
||||||
'device_time': device_time,
|
# run_in_parallel(((self._check_last_transaction_in_activity, {'wallet_view': self.wallet_1,
|
||||||
'amount_to_send': amount_to_send}),
|
# 'device_time': device_time,
|
||||||
(self._check_last_transaction_in_activity, {'wallet_view': self.wallet_2,
|
# 'amount_to_send': amount_to_send}),
|
||||||
'device_time': device_time,
|
# (self._check_last_transaction_in_activity, {'wallet_view': self.wallet_2,
|
||||||
'amount_to_send': amount_to_send,
|
# 'device_time': device_time,
|
||||||
'sender': False}))))
|
# 'amount_to_send': amount_to_send,
|
||||||
|
# 'sender': False}))))
|
||||||
self.errors.verify_no_errors()
|
self.errors.verify_no_errors()
|
||||||
|
|
||||||
@marks.testrail_id(727230)
|
@marks.testrail_id(727230)
|
||||||
|
@ -171,14 +172,15 @@ class TestWalletMultipleDevice(MultipleSharedDeviceTestCase):
|
||||||
self._check_balances_after_tx(amount_to_send, sender_balance, receiver_balance, eth_amount_sender,
|
self._check_balances_after_tx(amount_to_send, sender_balance, receiver_balance, eth_amount_sender,
|
||||||
eth_amount_receiver)
|
eth_amount_receiver)
|
||||||
|
|
||||||
self.loop.run_until_complete(
|
# ToDo: enable when issues 20807 and 20808 are fixed
|
||||||
run_in_parallel(((self._check_last_transaction_in_activity, {'wallet_view': self.wallet_1,
|
# self.loop.run_until_complete(
|
||||||
'device_time': device_time,
|
# run_in_parallel(((self._check_last_transaction_in_activity, {'wallet_view': self.wallet_1,
|
||||||
'amount_to_send': amount_to_send}),
|
# 'device_time': device_time,
|
||||||
(self._check_last_transaction_in_activity, {'wallet_view': self.wallet_2,
|
# 'amount_to_send': amount_to_send}),
|
||||||
'device_time': device_time,
|
# (self._check_last_transaction_in_activity, {'wallet_view': self.wallet_2,
|
||||||
'amount_to_send': amount_to_send,
|
# 'device_time': device_time,
|
||||||
'sender': False}))))
|
# 'amount_to_send': amount_to_send,
|
||||||
|
# 'sender': False}))))
|
||||||
self.errors.verify_no_errors()
|
self.errors.verify_no_errors()
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue