Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
iansuvak committed Aug 16, 2024
1 parent c182fa6 commit f6e82e6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions tests/e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func TestE2E(t *testing.T) {
// In case of a panic we need to recover to ensure the Ginkgo cleanup is done
defer func() {
if r := recover(); r != nil {
fmt.Sprintf("Panic caught: %v", r)
log.Error("Panic caught: ", "panic", r)
cleanup()
os.Exit(1)
}
Expand All @@ -59,7 +59,6 @@ func TestE2E(t *testing.T) {

RegisterFailHandler(ginkgo.Fail)
ginkgo.RunSpecs(t, "Relayer e2e test")

}

// Define the Relayer before and after suite functions.
Expand Down
1 change: 0 additions & 1 deletion tests/utils/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ func RunSignatureAggregatorExecutable(ctx context.Context, configPath string) (c
aggregatorCancel()
<-aggregatorCtx.Done()
}, readyChan

}

func ReadHexTextFile(filename string) string {
Expand Down

0 comments on commit f6e82e6

Please sign in to comment.