diff --git a/tests/official/test_fixture_operations_proposer_slashings.nim b/tests/official/test_fixture_operations_proposer_slashings.nim index a77a59007..7729af487 100644 --- a/tests/official/test_fixture_operations_proposer_slashings.nim +++ b/tests/official/test_fixture_operations_proposer_slashings.nim @@ -64,13 +64,18 @@ template runTest(identifier: untyped) = `testImpl_proposer_slashing _ identifier`() suite "Official - Operations - Proposer slashing " & preset(): - runTest(success) - runTest(invalid_sig_1) - runTest(invalid_sig_2) - runTest(invalid_sig_1_and_2) - runTest(invalid_proposer_index) - runTest(epochs_are_different) - runTest(headers_are_same) - runTest(proposer_is_not_activated) - runTest(proposer_is_slashed) - runTest(proposer_is_withdrawn) + # TODO https://github.com/status-im/nim-beacon-chain/issues/435 + # CI Win64 - "The parameter is incorrect" + when not (defined(windows) and sizeof(int) == 8): + runTest(success) + runTest(invalid_sig_1) + runTest(invalid_sig_2) + runTest(invalid_sig_1_and_2) + runTest(invalid_proposer_index) + runTest(epochs_are_different) + runTest(headers_are_same) + runTest(proposer_is_not_activated) + runTest(proposer_is_slashed) + runTest(proposer_is_withdrawn) + else: + echo "Skipped for Windows 64-bit CI"