From 3d468a7a4c6387da8420a2101c2855f973f7eac3 Mon Sep 17 00:00:00 2001 From: jangko Date: Wed, 6 Jan 2021 21:45:48 +0700 Subject: [PATCH] fixes path pointing to eth_tests --- stateless/test_block_witness.nim | 2 +- tests/test_blockchain_json.nim | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/stateless/test_block_witness.nim b/stateless/test_block_witness.nim index 5a7804773..123e7f064 100644 --- a/stateless/test_block_witness.nim +++ b/stateless/test_block_witness.nim @@ -105,7 +105,7 @@ proc blockWitnessMain*(debugMode = false) = legacyGSTFolder = "eth_tests" / "LegacyTests" / "Constantinople" / "GeneralStateTests" newGSTFolder = "eth_tests" / "GeneralStateTests" legacyBCFolder = "eth_tests" / "LegacyTests" / "Constantinople" / "BlockchainTests" - newBCFolder = "eth_tests" / "BlockChainTests" + newBCFolder = "eth_tests" / "BlockchainTests" if paramCount() == 0 or not debugMode: # run all test fixtures diff --git a/tests/test_blockchain_json.nim b/tests/test_blockchain_json.nim index 890e4ea94..5c2eb28fb 100644 --- a/tests/test_blockchain_json.nim +++ b/tests/test_blockchain_json.nim @@ -764,7 +764,7 @@ proc blockchainJsonMain*(debugMode = false) = suite "block chain json tests": jsonTest(legacyFolder, "BlockchainTests", testFixture, skipBCTests) suite "new block chain json tests": - jsonTest(newFolder, "newBlockChainTests", testFixture, skipNewBCTests) + jsonTest(newFolder, "newBlockchainTests", testFixture, skipNewBCTests) else: # execute single test in debug mode let config = test_config.getConfiguration()