Skip to content

Commit

Permalink
chore: PR comment
Browse files Browse the repository at this point in the history
  • Loading branch information
jkoenig134 committed Jul 11, 2024
1 parent 6eba208 commit 2f29577
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/modules/coreHttpApi/openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1028,7 +1028,7 @@ paths:
$ref: "#/components/responses/NotFound"
delete:
operationId: deleteRepositoryAttribute
description: Delete an repository attribute.
description: Delete a repository attribute.
tags:
- Attributes
parameters:
Expand All @@ -1040,7 +1040,7 @@ paths:
$ref: "#/components/schemas/AttributeID"
responses:
204:
description: Success. Deleting an repository attribute.
description: Success. Deleting a repository attribute.
headers:
X-Response-Duration-ms:
schema:
Expand Down
2 changes: 1 addition & 1 deletion test/attributes.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ describe("Delete attributes", () => {
const client2RepositoryAttribute = await client1.attributes.getAttribute(repositoryAttributeId);
expect(client2RepositoryAttribute.isSuccess).toBe(true);
});
test("should delete an repository attribute", async () => {
test("should delete a repository attribute", async () => {
const attribute = await client1.attributes.createRepositoryAttribute({
content: {
value: {
Expand Down

0 comments on commit 2f29577

Please sign in to comment.