Skip to content
This repository has been archived by the owner on May 11, 2024. It is now read-only.

Commit

Permalink
test: fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtaikocha committed Apr 10, 2024
1 parent a5fd63e commit 6bd9708
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions prover/prover_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ func (s *ProverTestSuite) TestInitError() {

p := new(Prover)

s.ErrorContains(InitFromConfig(ctx, p, &Config{
s.NotNil(InitFromConfig(ctx, p, &Config{
L1WsEndpoint: os.Getenv("L1_NODE_WS_ENDPOINT"),
L1HttpEndpoint: os.Getenv("L1_NODE_HTTP_ENDPOINT"),
L2WsEndpoint: os.Getenv("L2_EXECUTION_ENGINE_WS_ENDPOINT"),
Expand Down Expand Up @@ -155,7 +155,7 @@ func (s *ProverTestSuite) TestInitError() {
TxSendTimeout: txmgr.DefaultBatcherFlagValues.TxSendTimeout,
TxNotInMempoolTimeout: txmgr.DefaultBatcherFlagValues.TxNotInMempoolTimeout,
},
}), "dial tcp:")
}))
}

func (s *ProverTestSuite) TestOnBlockProposed() {
Expand Down

0 comments on commit 6bd9708

Please sign in to comment.