Skip to content

Commit 9d68d82

Browse files
committed
CCM-10483: fix variable reference
1 parent beba479 commit 9d68d82

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/contracts/scripts/verify-golden-contracts.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ total_failures=0
1010
total_skipped=0
1111
total_passed=0
1212

13-
echo "### Per-Event Results" >> "$summary_file"
13+
echo "### Golden Contract Validation - Per-Event Results" >> "$summary_file"
1414
echo "| Consumer | Provider | Event | Result |" >> "$summary_file"
1515
echo "|----------|----------|--------|--------|" >> "$summary_file"
1616

@@ -68,9 +68,9 @@ echo "" >> "$summary_file"
6868
echo "### Golden Contract Validation Summary" >> "$summary_file"
6969
echo "| Status | Count |" >> "$summary_file"
7070
echo "|--------|-------|" >> "$summary_file"
71-
echo "| ✅ Passed | $passed |" >> "$summary_file"
72-
echo "| ❌ Failed | $failures |" >> "$summary_file"
73-
echo "| ⚠️ Skipped | $skipped |" >> "$summary_file"
71+
echo "| ✅ Passed | $total_passed |" >> "$summary_file"
72+
echo "| ❌ Failed | $total_failures |" >> "$summary_file"
73+
echo "| ⚠️ Skipped | $total_skipped |" >> "$summary_file"
7474

7575

7676
if [[ "$total_failures" -gt 0 ]]; then

0 commit comments

Comments
 (0)