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 /tests/functional_tests | |
| parent | fcb4c72bb56e2de1b034636c1ea88d23a5fb8c4b (diff) | |
| download | monzero-core-515e9316b1d5cdf7e1d4bfd6277eae3fda01cc8f.tar.gz monzero-core-515e9316b1d5cdf7e1d4bfd6277eae3fda01cc8f.tar.xz monzero-core-515e9316b1d5cdf7e1d4bfd6277eae3fda01cc8f.zip | |
functional_tests: fix transfer test - long payment ids are gone
Diffstat (limited to 'tests/functional_tests')
| -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 |
