Skip to content

Commit

Permalink
fix: EigenDA challenge test - update gitmodules
Browse files Browse the repository at this point in the history
  • Loading branch information
epociask committed Aug 19, 2024
1 parent 53d0159 commit 5b5333c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ jobs:
echo "GOMEMLIMIT=6GiB" >> "$GITHUB_ENV"
echo "GOGC=80" >> "$GITHUB_ENV"
- name: Spinup eigenda-proxy test dependency
- name: spinup eigenda-proxy
run: ./scripts/start-eigenda-proxy.sh

- name: run tests without race detection
Expand Down
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
[submodule "contracts"]
path = contracts
url = https://github.com/Layr-Labs/nitro-contracts.git
branch = new-osp-fixes-v3.0.3
branch = epociask--length-fixes-v3.0.3
[submodule "nitro-testnode"]
path = nitro-testnode
url = https://github.com/Layr-Labs/nitro-testnode.git
Expand Down
2 changes: 0 additions & 2 deletions system_tests/full_challenge_mock_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,13 @@ import "testing"
func TestMockChallengeManagerAsserterIncorrect(t *testing.T) {
t.Parallel()
for i := int64(1); i <= makeBatch_MsgsPerBatch*3; i++ {
RunChallengeTest(t, false, true, i, false)
RunChallengeTest(t, false, true, i, true)
}
}

func TestMockChallengeManagerAsserterCorrect(t *testing.T) {
t.Parallel()
for i := int64(1); i <= makeBatch_MsgsPerBatch*3; i++ {
RunChallengeTest(t, true, true, i, false)
RunChallengeTest(t, true, true, i, true)
}
}

0 comments on commit 5b5333c

Please sign in to comment.