Skip to content

Commit

Permalink
chore: self mutation
Browse files Browse the repository at this point in the history
Signed-off-by: github-actions <[email protected]>
  • Loading branch information
github-actions committed Oct 12, 2023
1 parent 667c387 commit d24465e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions lib/__tests__/signing.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ describe('with standard pipeline', () => {
const signingBucket = Bucket.fromBucketName(stack, 'SigningBucket', 'signing-bucket');
const signingLambda = Function.fromFunctionName(stack, 'SigningLambda', 'signing-lambda');
const accessRole = Role.fromRoleName(stack, 'AccessRole', 'access-role');

// WHEN
pipeline.signNuGetWithSigner({
signingBucket,
Expand All @@ -252,7 +252,7 @@ describe('with standard pipeline', () => {
signerProfileName: 'test-profile-name',
signerProfileOwner: 'test-profile-owner',
});

// THEN
Template.fromStack(stack).hasResourceProperties('AWS::CodeBuild::Project', Match.objectLike({
Environment: Match.objectLike({
Expand Down Expand Up @@ -332,7 +332,7 @@ describe('with standard pipeline', () => {
}),
}));
});

test('can provide a service role used for signing codebuild operations', () => {
// GIVEN
const signingBucket = Bucket.fromBucketName(stack, 'SigningBucket', 'signing-bucket');
Expand Down
2 changes: 1 addition & 1 deletion lib/signing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export interface SignNuGetWithSignerProps {
* @default no signing profile owner
*/
readonly signerProfileOwner?: string;

/*
* The service role that will be used to allow CodeBuild to perform operations
* on your behalf.
Expand Down

0 comments on commit d24465e

Please sign in to comment.