Update peerid tests for longer peerids

This commit is contained in:
Stuckinaboot 2019-05-08 20:19:13 -04:00
parent ae44c062df
commit 4b40339b63

View File

@ -46,9 +46,7 @@ def test_str_more_than_10():
for _ in range(10):
random_id_string += random.SystemRandom().choice(ALPHABETS)
pid = base58.b58encode(random_id_string).decode()
part_1, part_2 = pid[:2], pid[len(pid)-6:]
expected = "<peer.ID " + part_1 + "*" + part_2 + ">"
expected = "<peer.ID " + pid + ">"
actual = ID(random_id_string).__str__()
assert actual == expected