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-09-17 11:38:33 +0000 |
| commit | 6b72541dc01de559d5d09daffb4cf2578bb27067 (patch) | |
| tree | b987ecb8325e90f05775be9c3205a08b7c7d6f8f /tests/functional_tests/transfer.py | |
| parent | 1fac83858a8bbf778272172c4995609d60a75805 (diff) | |
| download | monzero-core-6b72541dc01de559d5d09daffb4cf2578bb27067.tar.gz monzero-core-6b72541dc01de559d5d09daffb4cf2578bb27067.tar.xz monzero-core-6b72541dc01de559d5d09daffb4cf2578bb27067.zip | |
functional_tests: python3 compatibility
and add missing tests
Diffstat (limited to 'tests/functional_tests/transfer.py')
| -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 9cb03741f..b4264f72d 100755 --- a/tests/functional_tests/transfer.py +++ b/tests/functional_tests/transfer.py @@ -792,7 +792,7 @@ class TransferTest(): if not k in unrecoverable_fields: e[k] = x[k] new_t_out.append(e) - assert sorted(old_t_out) == sorted(new_t_out) + assert sorted(old_t_out, key = lambda k: k['txid']) == sorted(new_t_out, key = lambda k: k['txid']) def check_is_key_image_spent(self): daemon = Daemon() |
