Skip to content

Commit a800f81

Browse files
heitorlessarubenfonseca
authored andcommitted
docs(maintainers): typos
1 parent c07e315 commit a800f81

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

MAINTAINERS.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
- [E2E framework](#e2e-framework)
3232
- [Structure](#structure)
3333
- [Mechanics](#mechanics)
34-
- [Authoring an E2E test](#authoring-an-e2e-test)
34+
- [Authoring a new feature E2E test](#authoring-a-new-feature-e2e-test)
3535
- [Internals](#internals)
3636
- [Test runner parallelization](#test-runner-parallelization)
3737
- [CDK CLI parallelization](#cdk-cli-parallelization)
@@ -346,7 +346,7 @@ Where:
346346

347347
### Mechanics
348348

349-
Under [`BaseInfrastructure`](https://github.com/awslabs/aws-lambda-powertools-python/blob/develop/tests/e2e/utils/infrastructure.py), we hide the complexity of handling CDK parallel deployments, exposing CloudFormation Outputs, building Lambda Layer with the latest available code, and creating Lambda functions found in `handlers`.
349+
Under [`BaseInfrastructure`](https://github.com/awslabs/aws-lambda-powertools-python/blob/develop/tests/e2e/utils/infrastructure.py), we hide the complexity of deployment/delete coordination under `deploy`, `delete`, and `create_lambda_functions` methods.
350350

351351
This allows us to benefit from test and deployment parallelization, use IDE step-through debugging for a single test, run a subset of tests and only deploy their related infrastructure, without any custom configuration.
352352

@@ -392,7 +392,7 @@ classDiagram
392392
BaseInfrastructure <|-- EventHandlerStack : inherit
393393
```
394394

395-
### Authoring an E2E test
395+
### Authoring a new feature E2E test
396396

397397
Imagine you're going to create E2E for Event Handler feature for the first time.
398398

@@ -508,7 +508,7 @@ def test_alb_headers_serializer(alb_basic_listener_endpoint):
508508

509509
#### Test runner parallelization
510510

511-
We parallelize our end-to-end tests to benefit from speed and isolate Lambda functions to ease assessing side effects (e.g., traces, logs, etc.). The following diagram demonstrates the process we take every time you use `make e2e`:
511+
We parallelize our end-to-end tests to benefit from speed and isolate Lambda functions to ease asserting side effects (e.g., traces, logs, etc.). The following diagram demonstrates the process we take every time you use `make e2e`:
512512

513513
```mermaid
514514
graph TD

0 commit comments

Comments
 (0)