Skip to content

Commit

Permalink
PR feedback: remove unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
Tabaie committed Oct 18, 2024
1 parent 357c5c7 commit ea6a678
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 22 deletions.
21 changes: 0 additions & 21 deletions prover/circuits/pi-interconnection/e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ package pi_interconnection_test
import (
"encoding/base64"
"fmt"
"github.com/consensys/linea-monorepo/prover/utils/test_utils"
"github.com/stretchr/testify/require"
"slices"
"testing"

Expand Down Expand Up @@ -292,22 +290,3 @@ func decomposeLittleEndian(t *testing.T, digits []int, n, base int) {
}
assert.Zero(t, n)
}

func TestSepoliaData(t *testing.T) {
var req pi_interconnection.Request
test_utils.LoadJson(t, "../../../testdata/sepolia-data/prover-pi-interconnection/requests/4454961-4457351.json", &req)
cfg := config.PublicInput{
MaxNbDecompression: 1,
MaxNbExecution: 31,
ExecutionMaxNbMsg: 1,
L2MsgMerkleDepth: 5, // have to keep this at 5 otherwise the roots won't match
L2MsgMaxNbMerkle: 1,
MockKeccakWizard: true,
}
compiled, err := pi_interconnection.Compile(cfg, dummy.Compile)
require.NoError(t, err)
a, err := compiled.Assign(req)
require.NoError(t, err)
t.Log("assignment successful")
require.NoError(t, test.IsSolved(compiled.Circuit, &a, ecc.BLS12_377.ScalarField()))
}

This file was deleted.

0 comments on commit ea6a678

Please sign in to comment.