Skip to content

Commit

Permalink
fix: Do not quietly exit, report errors!
Browse files Browse the repository at this point in the history
  • Loading branch information
markus-qvest-seidl committed Aug 2, 2024
1 parent b1a7a1e commit 60ea93e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions provider/provider_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,8 @@ func createTestRealm(testCtx context.Context) *keycloak.Realm {

err := keycloakClient.NewRealm(testCtx, r)
if err != nil {
println("Unable to create realm: " + r.Realm)
println(err)
os.Exit(1)
}

Expand Down

0 comments on commit 60ea93e

Please sign in to comment.