Skip to content

Commit

Permalink
adds test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
ashwiniag committed Dec 20, 2024
1 parent 8288d7b commit d5be390
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/restapi/v1/integrationtype/tests/get_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ func TestGetIntegrationType_InvalidIDFormat(t *testing.T) {
res := &integrationtype.GetIntegrationTypeResponse{}
handler := integrationtype.GetIntegrationType(client)
err := handler(context.Background(), req, res)
assert.Error(t, err)

req = integrationtype.GetIntegrationTypeRequests{ID: "Inv*ID"}
handler = integrationtype.GetIntegrationType(client)
err = handler(context.Background(), req, res)

assert.Error(t, err)
}

Expand Down

0 comments on commit d5be390

Please sign in to comment.