Skip to content

Commit

Permalink
chore: fix typo in runtime.test.ts (#29865)
Browse files Browse the repository at this point in the history
### Issue # (if applicable)

Closes #<issue number here>.

### Reason for this change



### Description of changes



### Description of how you validated changes



### Checklist
- [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md)

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
kdnakt committed Apr 17, 2024
1 parent 41d2c52 commit e22e930
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/aws-lambda/test/runtime.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ describe('runtime', () => {
expect(runtime.bundlingDockerImage.image).toEqual('public.ecr.aws/sam/build-my-runtime-name');
});

test('overridde to bundlingDockerImage points to the correct image', () => {
test('override to bundlingDockerImage points to the correct image', () => {
// GIVEN
const runtime = new lambda.Runtime('my-runtime-name', undefined, {
bundlingDockerImage: 'my-docker-image',
Expand Down

0 comments on commit e22e930

Please sign in to comment.