@@ -1015,7 +1015,7 @@ async def test_add_private_key(daemon_connection_and_temp_keychain):
10151015 # Expect: Failure due to missing mnemonic
10161016 assert_response (await ws .receive (), missing_mnemonic_response_data )
10171017
1018- # When: using a mmnemonic with an incorrect word (typo)
1018+ # When: using a mnemonic with an incorrect word (typo)
10191019 await ws .send_str (create_payload ("add_private_key" , {"mnemonic" : mnemonic_with_typo }, "test" , "daemon" ))
10201020 # Expect: Failure due to misspelled mnemonic
10211021 assert_response (await ws .receive (), mnemonic_with_typo_response_data )
@@ -1025,7 +1025,7 @@ async def test_add_private_key(daemon_connection_and_temp_keychain):
10251025 # Expect: Failure due to invalid mnemonic
10261026 assert_response (await ws .receive (), invalid_mnemonic_length_response_data )
10271027
1028- # When: using an incorrect mnemnonic
1028+ # When: using an incorrect mnemonic
10291029 await ws .send_str (create_payload ("add_private_key" , {"mnemonic" : " " .join (["abandon" ] * 24 )}, "test" , "daemon" ))
10301030 # Expect: Failure due to checksum error
10311031 assert_response (await ws .receive (), invalid_mnemonic_response_data )
@@ -1340,7 +1340,7 @@ async def test_bad_json(daemon_connection_and_temp_keychain: tuple[aiohttp.Clien
13401340 ),
13411341 RouteCase (
13421342 route = "unknown_command" ,
1343- description = "non-existant route" ,
1343+ description = "non-existent route" ,
13441344 request = {},
13451345 response = {"success" : False , "error" : "unknown_command unknown_command" },
13461346 ),
0 commit comments