We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4acc81a commit 2eb7bd5Copy full SHA for 2eb7bd5
1 file changed
tests/test_msg_mayachain_getaddress.py
@@ -10,14 +10,12 @@
10
11
class TestMsgMayaChainGetAddress(common.KeepKeyTest):
12
13
- @unittest.skip("TODO: capture expected address from emulator (smaya prefix, not tthor)")
14
def test_mayachain_get_address(self):
15
self.requires_firmware("7.9.1")
16
self.requires_fullFeature()
17
self.setup_mnemonic_nopin_nopassphrase()
18
address = self.client.mayachain_get_address(parse_path(DEFAULT_BIP32_PATH), testnet=True)
19
- # Address uses smaya prefix for testnet, not tthor
20
- self.assertRegex(address, r'^smaya1')
+ self.assertEqual(address, "smaya1ls33ayg26kmltw7jjy55p32ghjna09zp2mf0av")
21
22
if __name__ == '__main__':
23
unittest.main()
0 commit comments