aboutsummaryrefslogtreecommitdiff
path: root/tests/functional_tests/proofs.py
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2019-06-01 20:27:41 +0200
committerRiccardo Spagni <ric@spagni.net>2019-06-01 20:27:41 +0200
commit51766d026bb0337d7bff17f1e3c0c403b21eaefd (patch)
tree4ff11a8d0caac85ba17efb01598fb8546a7752ff /tests/functional_tests/proofs.py
parentMerge pull request #5577 (diff)
parentfunctional_tests: fix python3 compatibility (diff)
downloadmonero-51766d026bb0337d7bff17f1e3c0c403b21eaefd.tar.xz
Merge pull request #5583
77594c4f functional_tests: fix python3 compatibility (moneromooo-monero)
Diffstat (limited to 'tests/functional_tests/proofs.py')
-rwxr-xr-xtests/functional_tests/proofs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/functional_tests/proofs.py b/tests/functional_tests/proofs.py
index 844131095..243929dc3 100755
--- a/tests/functional_tests/proofs.py
+++ b/tests/functional_tests/proofs.py
@@ -28,7 +28,7 @@
# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
# THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-import time
+from __future__ import print_function
"""Test misc proofs (tx key, send, receive, reserve)
"""
@@ -47,7 +47,7 @@ class ProofsTest():
self.check_reserve_proof()
def reset(self):
- print 'Resetting blockchain'
+ print('Resetting blockchain')
daemon = Daemon()
daemon.pop_blocks(1000)
daemon.flush_txpool()