Skip to content

Commit

Permalink
chore: failed my own code writing
Browse files Browse the repository at this point in the history
  • Loading branch information
vladfrangu committed Sep 6, 2024
1 parent 095c716 commit a4a129f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export function* checkInteractionContextTypes(
while ((type = existingContexts![index]) !== undefined) {
yield {
key: `contexts[${index}]`,
original: 'context present',
original: `context ${type} present`,
expected: `no context present`
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ export function* checkIntegrationTypes(
while ((type = existingIntegrationTypes![index]) !== undefined) {
yield {
key: `integrationTypes[${index}]`,
original: 'integration type present',
expected: `no integration type present`
original: `integration type ${type} present`,
expected: 'no integration type present'
};

index++;
Expand Down

0 comments on commit a4a129f

Please sign in to comment.