From a4529d827d3e2a08e13c52e0808e567c61d42e6d Mon Sep 17 00:00:00 2001 From: Stuckinaboot Date: Tue, 21 May 2019 22:25:08 -0400 Subject: [PATCH] Modify peer_id str --- libp2p/peer/id.py | 2 +- tests/peer/test_peerid.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libp2p/peer/id.py b/libp2p/peer/id.py index a46c4627..3097e1fb 100644 --- a/libp2p/peer/id.py +++ b/libp2p/peer/id.py @@ -27,7 +27,7 @@ class ID: def __str__(self): pid = self.pretty() - return "" % pid + return pid __repr__ = __str__ diff --git a/tests/peer/test_peerid.py b/tests/peer/test_peerid.py index e481a401..d1cf7182 100644 --- a/tests/peer/test_peerid.py +++ b/tests/peer/test_peerid.py @@ -36,7 +36,7 @@ def test_str_less_than_10(): for _ in range(5): random_id_string += random.SystemRandom().choice(ALPHABETS) pid = base58.b58encode(random_id_string).decode() - expected = "" + expected = pid actual = ID(random_id_string).__str__() assert actual == expected @@ -46,7 +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() - expected = "" + expected = pid actual = ID(random_id_string).__str__() assert actual == expected