Skip to content

Commit 4598212

Browse files
committed
save
1 parent 7c88394 commit 4598212

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

e2e/e2e_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,20 @@ import (
1313

1414
func TestE2E(t *testing.T) {
1515
if os.Getenv("TEST_E2E") != "true" {
16-
t.Skip("Skipping TestE2E as requested.")
16+
t.Skip("Skipping E2E tests.")
1717
}
1818
if runtime.GOARCH == "arm64" {
1919
log.Println("Skipping tests: Unsupported architecture (arm64)")
2020
t.Skip()
2121
}
2222

2323
chainContainer, endpoint, err := utils.SetupLocalChain(context.Background())
24-
require.NoError(t, err)
2524
t.Cleanup(func() {
2625
if err := chainContainer.Terminate(context.Background()); err != nil {
2726
t.Logf("failed to terminate chain container: %v", err)
2827
}
2928
})
29+
require.NoError(t, err)
3030

3131
log.Printf("Chain endpoint: %s\n", endpoint)
3232

0 commit comments

Comments
 (0)