diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-10-15 20:11:11 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-10-15 20:11:11 +0000 |
commit | 515e9316b1d5cdf7e1d4bfd6277eae3fda01cc8f (patch) | |
tree | 93aefaca3c19308ee621991ca340564febc5fb8e | |
parent | Merge pull request #5943 (diff) | |
download | monero-515e9316b1d5cdf7e1d4bfd6277eae3fda01cc8f.tar.xz |
functional_tests: fix transfer test - long payment ids are gone
-rwxr-xr-x | tests/functional_tests/transfer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional_tests/transfer.py b/tests/functional_tests/transfer.py index a4f9b9e22..0c942f48b 100755 --- a/tests/functional_tests/transfer.py +++ b/tests/functional_tests/transfer.py @@ -556,7 +556,7 @@ class TransferTest(): assert 'payments' not in res or len(res.payments) == 0 res = self.wallet[1].get_payments('1234500000012345abcde00000abcdeff1234500000012345abcde00000abcde') - assert len(res.payments) >= 2 + assert 'payments' not in res or len(res.payments) == 0 res = self.wallet[1].get_payments('ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff') assert 'payments' not in res or len(res.payments) == 0 |