From ee84b438348d264ed7398e09f9b25e60668f9348 Mon Sep 17 00:00:00 2001 From: pk910 Date: Tue, 14 Jan 2025 00:41:55 +0100 Subject: [PATCH] small test fixes --- playbooks/dev/execution-spec-tests-execute.yaml | 2 +- .../pectra-dev/validator-lifecycle-test-v3.yaml | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/playbooks/dev/execution-spec-tests-execute.yaml b/playbooks/dev/execution-spec-tests-execute.yaml index 5747f6d..f4c4a45 100644 --- a/playbooks/dev/execution-spec-tests-execute.yaml +++ b/playbooks/dev/execution-spec-tests-execute.yaml @@ -178,7 +178,7 @@ tasks: - name: run_task_matrix title: "Show test results" configVars: - matrixValues: "tasks.execute.outputs.reportJSON.tests" + matrixValues: "tasks.execute.outputs.reportJSON" config: runConcurrent: true matrixVar: "testResult" diff --git a/playbooks/pectra-dev/validator-lifecycle-test-v3.yaml b/playbooks/pectra-dev/validator-lifecycle-test-v3.yaml index 6832865..ace4b4c 100644 --- a/playbooks/pectra-dev/validator-lifecycle-test-v3.yaml +++ b/playbooks/pectra-dev/validator-lifecycle-test-v3.yaml @@ -1273,24 +1273,24 @@ tasks: config: validatorStatus: - active_ongoing - minValidatorBalance: 41900000000 + minValidatorBalance: 31900000000 configVars: validatorPubKey: "tasks.all_pubkeys.outputs.pubkeys[6]" - name: run_shell - title: "Check validator #6 status: 42 ETH (41 ETH EB), 0x00 withdrawal creds" + title: "Check validator #6 status: 31.9 ETH (32 ETH EB), 0x00 withdrawal creds" config: envVars: validator: "tasks.validator_info_6_b.outputs.validator" command: | balance=$(echo "$validator" | jq -r '.balance') - if [ "$balance" -lt 41900000000 ]; then - echo "Balance too high! expected: > 41.9 ETH, got: $balance Gwei" + if [ "$balance" -lt 31900000000 ]; then + echo "Balance too high! expected: > 31.9 ETH, got: $balance Gwei" exit 1 fi effective_balance=$(echo "$validator" | jq -r '.validator.effective_balance') - if [ "$effective_balance" != "41000000000" ]; then - echo "Effective balance too high! expected: 41 ETH, got: $effective_balance Gwei" + if [ "$effective_balance" != "32000000000" ]; then + echo "Effective balance too high! expected: 32 ETH, got: $effective_balance Gwei" exit 1 fi