Skip to content

Commit 0295d21

Browse files
committedMar 26, 2025
fix(test): return early after test failure (#61)
1 parent b575336 commit 0295d21

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

Diff for: ‎usage_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ func TestUsage(t *testing.T) {
2727
response, err := client.Identity.GetAuthenticatedIdentity(context.TODO(), gitpod.IdentityGetAuthenticatedIdentityParams{})
2828
if err != nil {
2929
t.Error(err)
30+
return
3031
}
3132
t.Logf("%+v\n", response.OrganizationID)
3233
}

0 commit comments

Comments
 (0)
Please sign in to comment.