chore: fixes for wallet tests

This commit is contained in:
Valentina Novgorodtceva 2024-01-12 15:38:32 +07:00 committed by Anastasiya
parent e45da2c9b6
commit f8ee8f08bc
2 changed files with 3 additions and 2 deletions

View File

@ -22,5 +22,6 @@ savedAddressView_Delegate_menuButton = {"container": mainWindow_SavedAddressesVi
# Wallet Account View # Wallet Account View
mainWindow_StatusSectionLayout_ContentItem = {"container": statusDesktop_mainWindow, "objectName": "StatusSectionLayout", "type": "ContentItem", "visible": True} mainWindow_StatusSectionLayout_ContentItem = {"container": statusDesktop_mainWindow, "objectName": "StatusSectionLayout", "type": "ContentItem", "visible": True}
mainWallet_Account_Name = {"container": mainWindow_StatusSectionLayout_ContentItem, "objectName": "accountName", "type": "StatusBaseText", "visible": True} mainWindow_RightTabView = {"container": statusDesktop_mainWindow, "type": "RightTabView", "unnamed": 1, "visible": True}
mainWallet_Account_Name = {"container": mainWindow_RightTabView, "objectName": "walletHeaderTitle", "type": "StatusBaseText", "visible": True}
mainWindow_Send_Button = {"container": mainWindow_StatusWindow, "type": "DisabledTooltipButton", "icon": "send", "visible": True} mainWindow_Send_Button = {"container": mainWindow_StatusWindow, "type": "DisabledTooltipButton", "icon": "send", "visible": True}

View File

@ -216,7 +216,7 @@ class NetworkWalletSettings(WalletSettingsView):
def __init__(self): def __init__(self):
super(NetworkWalletSettings, self).__init__() super(NetworkWalletSettings, self).__init__()
self._testnet_text_item = QObject('s') self._testnet_text_item = QObject('settingsContentBaseScrollView_Goerli_testnet_active_StatusBaseText')
self._testnet_mode_toggle = Button('settings_Wallet_NetworksView_TestNet_Toggle') self._testnet_mode_toggle = Button('settings_Wallet_NetworksView_TestNet_Toggle')
self._testnet_mode_title = TextLabel('settings_Wallet_NetworksView_TestNet_Toggle_Title') self._testnet_mode_title = TextLabel('settings_Wallet_NetworksView_TestNet_Toggle_Title')
self._back_button = Button('main_toolBar_back_button') self._back_button = Button('main_toolBar_back_button')