fixes path pointing to eth_tests

This commit is contained in:
jangko 2021-01-06 21:45:48 +07:00
parent 69787ed96a
commit 3d468a7a4c
No known key found for this signature in database
GPG Key ID: 31702AE10541E6B9
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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()