Skip to content

Commit

Permalink
chore: pr comments
Browse files Browse the repository at this point in the history
  • Loading branch information
sebbi08 committed Dec 19, 2024
1 parent cb0fad7 commit 78280a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/runtime/test/consumption/attributes.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -757,7 +757,7 @@ describe(CreateRepositoryAttributeUseCase.name, () => {
);
});

test("should not prevent the creation when the duplicate got succeeded", async () => {
test("should not prevent the creation when the RepositoryAttribute duplicate got succeeded", async () => {
const request: CreateRepositoryAttributeRequest = {
content: {
value: {
Expand Down Expand Up @@ -817,7 +817,7 @@ describe(CreateRepositoryAttributeUseCase.name, () => {
expect(result2).toBeSuccessful();
});

test("should not create a duplicate RepositoryAttribute even if the Tags/validFrom/validTo are different", async () => {
test("should not create a duplicate RepositoryAttribute even if the tags/validFrom/validTo are different", async () => {
const validFrom = CoreDate.utc().subtract({ day: 1 }).toString();
const validTo = CoreDate.utc().add({ day: 1 }).toString();
const request: CreateRepositoryAttributeRequest = {
Expand Down Expand Up @@ -887,7 +887,7 @@ describe(CreateRepositoryAttributeUseCase.name, () => {
);
});

test("should create a RepositoryAttribute even if the Tags/validFrom/validTo are duplicates", async () => {
test("should create a RepositoryAttribute even if the tags/validFrom/validTo are duplicates", async () => {
const validFrom = CoreDate.utc().subtract({ day: 1 }).toString();
const validTo = CoreDate.utc().add({ day: 1 }).toString();
const request: CreateRepositoryAttributeRequest = {
Expand Down

0 comments on commit 78280a3

Please sign in to comment.