From faf1274998367c7b22ddc47476ee379ca6d731f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20=C5=BBebrak?= Date: Thu, 17 Nov 2022 13:57:57 +0100 Subject: [PATCH 1/2] Update test-tools submodule --- tests/test_tools | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_tools b/tests/test_tools index 0a0af4191..3d044ed69 160000 --- a/tests/test_tools +++ b/tests/test_tools @@ -1 +1 @@ -Subproject commit 0a0af4191c59942f6224d4c4962ca4d380535413 +Subproject commit 3d044ed6947f13d86c72d25d82f81eb29321026e -- GitLab From 3da8fbd4cbfe2bd21d8e664fe149d611dcf9dde3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20=C5=BBebrak?= Date: Thu, 17 Nov 2022 14:01:47 +0100 Subject: [PATCH 2/2] Remove workaround with manual wallet closing when dumping snapshot --- .../test_if_proposal_id_is_not_reused_after_snapshot_load.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/functional/python_tests/hived/test_if_proposal_id_is_not_reused_after_snapshot_load.py b/tests/functional/python_tests/hived/test_if_proposal_id_is_not_reused_after_snapshot_load.py index 2122801e8..24da9bd6b 100644 --- a/tests/functional/python_tests/hived/test_if_proposal_id_is_not_reused_after_snapshot_load.py +++ b/tests/functional/python_tests/hived/test_if_proposal_id_is_not_reused_after_snapshot_load.py @@ -36,11 +36,7 @@ def test_if_proposal_id_is_not_reused_after_snapshot_load(): # wait for the blocks with the transactions to become irreversible, and will be saved in block_log first_node.wait_number_of_blocks(21) - # Node during snapshot is restarted - this requires wallet reconnection. This is a bug described in issue - # https://gitlab.syncad.com/hive/test-tools/-/issues/9. This place have to be rewritten after solving this issue. - wallet.close() snapshot = first_node.dump_snapshot() - wallet.run() second_node = tt.ApiNode() connect_nodes(first_node, second_node) -- GitLab