Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.

Commit 23bdc1e

Browse files
authored
Merge pull request #334 from mnottale/e2e-fix-exit-code
e2e: Fix exit code on failure.
2 parents e0149c7 + ac7d864 commit 23bdc1e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

e2e/main_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ func TestMain(m *testing.M) {
1515
if err := os.Chdir(*e2ePath); err != nil {
1616
panic(err)
1717
}
18-
m.Run()
18+
os.Exit(m.Run())
1919
}

0 commit comments

Comments
 (0)