diff --git a/tests/official/fixtures b/tests/official/fixtures index ce78f963a..330d343cb 160000 --- a/tests/official/fixtures +++ b/tests/official/fixtures @@ -1 +1 @@ -Subproject commit ce78f963a1da1b747a10bb027a8b438b3c679586 +Subproject commit 330d343cb5e5c68e16eb57963e46d64a424751e6 diff --git a/tests/official/fixtures_utils.nim b/tests/official/fixtures_utils.nim index 165366bfb..6b533cb9c 100644 --- a/tests/official/fixtures_utils.nim +++ b/tests/official/fixtures_utils.nim @@ -36,7 +36,7 @@ proc readValue*(r: var JsonReader, a: var seq[byte]) {.inline.} = const FixturesDir* = currentSourcePath.rsplit(DirSep, 1)[0] / "fixtures" - SszTestsDir* = FixturesDir/"tests-v0.9.3" + SszTestsDir* = FixturesDir/"tests-v0.9.4" proc parseTest*(path: string, Format: typedesc[Json or SSZ], T: typedesc): T = try: diff --git a/tests/official/test_fixture_const_sanity_check.nim b/tests/official/test_fixture_const_sanity_check.nim index 52b779ab2..32f3439c2 100644 --- a/tests/official/test_fixture_const_sanity_check.nim +++ b/tests/official/test_fixture_const_sanity_check.nim @@ -20,7 +20,7 @@ const SpecDir = currentSourcePath.rsplit(DirSep, 1)[0] / ".."/".."/"beacon_chain"/"spec" FixturesDir = currentSourcePath.rsplit(DirSep, 1)[0] / "fixtures" - Config = FixturesDir/"tests-v0.9.3"/const_preset/"config.yaml" + Config = FixturesDir/"tests-v0.9.4"/const_preset/"config.yaml" type CheckedType = SomeInteger or Slot or Epoch @@ -119,5 +119,5 @@ proc checkConfig() = else: check: ConstsToCheck[constant] == value.getBiggestInt().uint64() -suite "Official - 0.9.3 - constants & config " & preset(): +suite "Official - 0.9.4 - constants & config " & preset(): checkConfig() diff --git a/tests/official/test_fixture_ssz_consensus_objects.nim b/tests/official/test_fixture_ssz_consensus_objects.nim index cc4a01b97..3f564cfe6 100644 --- a/tests/official/test_fixture_ssz_consensus_objects.nim +++ b/tests/official/test_fixture_ssz_consensus_objects.nim @@ -1,5 +1,5 @@ # beacon_chain -# Copyright (c) 2018 Status Research & Development GmbH +# Copyright (c) 2018-2019 Status Research & Development GmbH # Licensed and distributed under either of # * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT). # * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0). @@ -26,7 +26,7 @@ import const FixturesDir = currentSourcePath.rsplit(DirSep, 1)[0] / "fixtures" - SSZDir = FixturesDir/"tests-v0.9.3"/const_preset/"phase0"/"ssz_static" + SSZDir = FixturesDir/"tests-v0.9.4"/const_preset/"phase0"/"ssz_static" type SSZHashTreeRoot = object @@ -102,5 +102,5 @@ proc runSSZtests() = else: raise newException(ValueError, "Unsupported test: " & sszType) -suite "Official - 0.9.3 - SSZ consensus objects " & preset(): +suite "Official - 0.9.4 - SSZ consensus objects " & preset(): runSSZtests() diff --git a/tests/official/test_fixture_ssz_generic_types.nim b/tests/official/test_fixture_ssz_generic_types.nim index c0eca6188..a9b98b718 100644 --- a/tests/official/test_fixture_ssz_generic_types.nim +++ b/tests/official/test_fixture_ssz_generic_types.nim @@ -23,7 +23,7 @@ import const FixturesDir = currentSourcePath.rsplit(DirSep, 1)[0] / "fixtures" - SSZDir = FixturesDir/"tests-v0.9.3"/"general"/"phase0"/"ssz_generic" + SSZDir = FixturesDir/"tests-v0.9.4"/"general"/"phase0"/"ssz_generic" type SSZHashTreeRoot = object @@ -278,5 +278,5 @@ proc runSSZtests() = # test "Testing " & name & " inputs (" & $T & ") - invalid": # const path = SSZDir/name/"invalid" -suite "Official - 0.9.3 - SSZ generic types": +suite "Official - 0.9.4 - SSZ generic types": runSSZtests()