Skip to content

Commit a8c83b3

Browse files
author
anupsv
committed
fixing for ci lint
1 parent 2bca985 commit a8c83b3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

e2e/server_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ func TestOptimismClientWithKeccak256Commitment(t *testing.T) {
3939
daClientPcFalse := op_plasma.NewDAClient(ts.Address(), false, false)
4040

4141
// nil commitment. Should return an error but currently is not. This needs to be fixed by OP
42-
//t.Run("nil commitment case", func(t *testing.T) {
42+
// t.Run("nil commitment case", func(t *testing.T) {
4343
// var commit op_plasma.CommitmentData
4444
// _, err := daClient.GetInput(ts.Ctx, commit)
4545
// require.Error(t, err)
4646
// assert.True(t, !isPanic(err.Error()))
47-
//})
47+
// })
4848

4949
t.Run("input bad data to SetInput & GetInput", func(t *testing.T) {
5050
testPreimage := []byte("") // Empty preimage
@@ -60,7 +60,7 @@ func TestOptimismClientWithKeccak256Commitment(t *testing.T) {
6060
require.Error(t, err)
6161

6262
// Should not fail on slice bounds out of range. This needs to be fixed by OP.
63-
//assert.False(t, strings.Contains(err.Error(), ": EOF") && !isPanic(err.Error()))
63+
// assert.False(t, strings.Contains(err.Error(), ": EOF") && !isPanic(err.Error()))
6464
})
6565

6666
// nil commitment. Should return an error but currently not

0 commit comments

Comments
 (0)