From a03a5d147b438e42d4d83f514d686c2f49e4e7a2 Mon Sep 17 00:00:00 2001 From: Sergio Garcia <38561120+sergargar@users.noreply.github.com> Date: Mon, 6 May 2024 18:21:12 +0200 Subject: [PATCH] chore(docs): remove unnecessary line (#3933) --- docs/developer-guide/unit-testing.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs/developer-guide/unit-testing.md b/docs/developer-guide/unit-testing.md index ce551e0752..c6b5abc577 100644 --- a/docs/developer-guide/unit-testing.md +++ b/docs/developer-guide/unit-testing.md @@ -191,9 +191,6 @@ class Test_iam_password_policy_uppercase: expiration=True, ) - # We set a mocked aws_provider to unify providers, this way will isolate each test not to step on other tests configuration - aws_provider = set_mocked_aws_provider([AWS_REGION_US_EAST_1]) - # In this scenario we have to mock also the IAM service and the iam_client from the check to enforce # that the iam_client used is the one created within this check because patch != import, and if you # execute tests in parallel some objects can be already initialised hence the check won't be isolated. # In this case we don't use the Moto decorator, we use the mocked IAM client for both objects with mock.patch(