diff --git a/workshops/serverless-testing-workshop/tests/unit/src/test_checkout.py b/workshops/serverless-testing-workshop/tests/unit/src/test_checkout.py index f57369e5..ea558a9c 100644 --- a/workshops/serverless-testing-workshop/tests/unit/src/test_checkout.py +++ b/workshops/serverless-testing-workshop/tests/unit/src/test_checkout.py @@ -36,7 +36,7 @@ class TestSampleLambdaWithDynamoDB(TestCase): def setUp(self) -> None: """ Test Set up: - 1. Create the lambda environment variale DYNAMODB_TABLE_NAME + 1. Create the Lambda environment variable DYNAMODB_TABLE_NAME 2. Build a DynamoDB Table according to the SAM template 3. Populate DynamoDB Data into the Table for test """ @@ -163,4 +163,4 @@ def tearDown(self) -> None: For teardown, remove the mocked table & environment variable """ self.mock_dynamodb_table.delete() - del environ['DYNAMODB_TABLE_NAME'] \ No newline at end of file + del environ['DYNAMODB_TABLE_NAME']