From 4424c33ae69f6df99ba0affaa1385099c21b4604 Mon Sep 17 00:00:00 2001 From: Daniil Sobol Date: Thu, 28 Dec 2023 23:52:40 +0300 Subject: [PATCH] update all_fluffy_tests to include new location of the tests --- fluffy/tests/all_fluffy_tests.nim | 5 +++-- fluffy/tests/state_network_tests/test_state_content.nim | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/fluffy/tests/all_fluffy_tests.nim b/fluffy/tests/all_fluffy_tests.nim index 1fe057503..5024028b6 100644 --- a/fluffy/tests/all_fluffy_tests.nim +++ b/fluffy/tests/all_fluffy_tests.nim @@ -9,8 +9,9 @@ import ./test_portal_wire_protocol, - ./test_state_distance, - ./test_state_network, + ./state_network_tests/test_state_distance, + ./state_network_tests/test_state_network, + ./state_network_tests/test_state_content, ./test_state_proof_verification, ./test_accumulator, ./test_history_network, diff --git a/fluffy/tests/state_network_tests/test_state_content.nim b/fluffy/tests/state_network_tests/test_state_content.nim index feb3911d5..d106b52d4 100644 --- a/fluffy/tests/state_network_tests/test_state_content.nim +++ b/fluffy/tests/state_network_tests/test_state_content.nim @@ -35,7 +35,7 @@ procSuite "State Content": let decodedKey = decodeSsz(encodedKey, AccountTrieProofKey) check decodedKey.isOk() - test "Encode/decode accountTrieProof": + test "Encode/decode accountTrieProof itself": let file = testVectorDir & "/proofs.full.block.0.json" let content = readAllFile(file).valueOr: quit(1)