Skip to content

Commit

Permalink
test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
amsanghi committed Jul 18, 2024
1 parent 16434a2 commit 8e6a296
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions system_tests/fa/fa_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
package fa_test

import (
"errors"
"github.com/offchainlabs/nitro/util/testhelpers"
"testing"
)

func TestAliasing(t *testing.T) {
var err error

Check failure on line 10 in system_tests/fa/fa_test.go

View workflow job for this annotation

GitHub Actions / Go Tests (long)

S1021: should merge variable declaration with assignment on next line (gosimple)

Check failure on line 10 in system_tests/fa/fa_test.go

View workflow job for this annotation

GitHub Actions / Go Tests (race)

S1021: should merge variable declaration with assignment on next line (gosimple)

Check failure on line 10 in system_tests/fa/fa_test.go

View workflow job for this annotation

GitHub Actions / Go Tests (challenge)

S1021: should merge variable declaration with assignment on next line (gosimple)

Check failure on line 10 in system_tests/fa/fa_test.go

View workflow job for this annotation

GitHub Actions / Go Tests (stylus)

S1021: should merge variable declaration with assignment on next line (gosimple)

Check failure on line 10 in system_tests/fa/fa_test.go

View workflow job for this annotation

GitHub Actions / Go Tests (defaults)

S1021: should merge variable declaration with assignment on next line (gosimple)
err = errors.New("test")
Require(t, err)
}

func Require(t *testing.T, err error, text ...interface{}) {
t.Helper()
testhelpers.RequireImpl(t, err, text...)
}

0 comments on commit 8e6a296

Please sign in to comment.