From 9248aa6242e2e074463b19df4b438bd6690dcddf Mon Sep 17 00:00:00 2001 From: thinkAfCod Date: Sun, 21 Apr 2024 23:32:13 +0800 Subject: [PATCH] fix: beacon fetcher test case --- .github/workflows/build.yml | 1 + .../src/test/java/io/optimism/l1/BeaconBlobFetcherTest.java | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 786f1dbe..8f9092a0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,6 +24,7 @@ jobs: env: ETH_API_KEY: ${{ secrets.ETH_API_KEY }} OPT_API_KEY: ${{ secrets.OPT_API_KEY }} + BEACON_ARCHIVE_API_URL: ${{ secrets.BEACON_ARCHIVE_API_URL }} run: ./gradlew build - name: Generate JaCoCo Badge diff --git a/hildr-node/src/test/java/io/optimism/l1/BeaconBlobFetcherTest.java b/hildr-node/src/test/java/io/optimism/l1/BeaconBlobFetcherTest.java index 0a524632..4e04e2a4 100644 --- a/hildr-node/src/test/java/io/optimism/l1/BeaconBlobFetcherTest.java +++ b/hildr-node/src/test/java/io/optimism/l1/BeaconBlobFetcherTest.java @@ -13,6 +13,7 @@ import java.net.URL; import java.util.List; import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; /**