Skip to content

Commit

Permalink
assert fix
Browse files Browse the repository at this point in the history
  • Loading branch information
russeree committed Mar 15, 2023
1 parent 0999c37 commit 147dd1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/functional/rpc_invalid_address_message.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def test_validateaddress(self):
self.check_invalid(BECH32_INVALID_VERSION, 'Invalid Bech32 address witness version')
self.check_invalid(BECH32_INVALID_V0_SIZE, 'Invalid Bech32 v0 address data size')
self.check_invalid(BECH32_TOO_LONG, 'Bech32(m) address decoded with error: Bech32 string too long', list(range(90, 108)))
self.check_invalid(BECH32_TOO_SHORT, 'Bech32(m) address decoded with error: Bech32 data part too short', [2])
self.check_invalid(BECH32_TOO_SHORT, 'Bech32(m) address decoded with error: Invalid separator position', [2])
self.check_invalid(BECH32_ONE_ERROR, 'Bech32(m) address decoded with error: Invalid Bech32 checksum', [9])
self.check_invalid(BECH32_TWO_ERRORS, 'Bech32(m) address decoded with error: Invalid Bech32 checksum', [22, 43])
self.check_invalid(BECH32_ONE_ERROR_CAPITALS, 'Invalid address endcoded as Base58 and Bech32(m) provided', [38])
Expand Down

0 comments on commit 147dd1b

Please sign in to comment.