diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-05-29 11:45:25 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-05-29 11:59:48 +0000 |
commit | 77594c4f4acf58656344fbb2bd84e63da58d2703 (patch) | |
tree | 73bcd2d1fa91bd0b0bacbad22385c38e50e636b9 /tests/functional_tests/speed.py | |
parent | Merge pull request #5548 (diff) | |
download | monero-77594c4f4acf58656344fbb2bd84e63da58d2703.tar.xz |
functional_tests: fix python3 compatibility
Also add missing bans test to the default tests
Diffstat (limited to 'tests/functional_tests/speed.py')
-rwxr-xr-x | tests/functional_tests/speed.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional_tests/speed.py b/tests/functional_tests/speed.py index bd8892df8..ed1e332e9 100755 --- a/tests/functional_tests/speed.py +++ b/tests/functional_tests/speed.py @@ -40,7 +40,7 @@ Test the following RPCs: import time from time import sleep -from decimal import Decimal +from __future__ import print_function from framework.daemon import Daemon from framework.wallet import Wallet |