From 2e7d45bf2e8530cc24790aad591ca5060d9ed695 Mon Sep 17 00:00:00 2001 From: Holger <holger@nahrstaedt.de> Date: Fri, 22 Jun 2018 16:02:19 +0200 Subject: [PATCH] Fix unit test for python 2.7 --- beem/blockchain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beem/blockchain.py b/beem/blockchain.py index e71a2c7c..04e63425 100644 --- a/beem/blockchain.py +++ b/beem/blockchain.py @@ -867,7 +867,7 @@ class Blockchain(object): >>> from beem.blockchain import Blockchain >>> blockchain = Blockchain() - >>> blockchain.get_similar_account_names("test", limit=5) + >>> print(blockchain.get_similar_account_names("test", limit=5)) ['test', 'test-1', 'test-2', 'test-ico', 'test-ilionx-123'] """ -- GitLab