From 5a2cbf1ecad4f56e75adcd2f177abed79bd7698c Mon Sep 17 00:00:00 2001 From: Brian Pandola Date: Sat, 21 Nov 2020 23:51:33 -0800 Subject: [PATCH] Fix: Duplicate test name causing loss of coverage A test added in #2401 copied the name of an existing test, preventing it from being run. This commit renames the second test, allowing both to be picked up by the test runner. --- tests/test_redshift/test_redshift.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_redshift/test_redshift.py b/tests/test_redshift/test_redshift.py index c9f0e3572..f2acf4d00 100644 --- a/tests/test_redshift/test_redshift.py +++ b/tests/test_redshift/test_redshift.py @@ -43,7 +43,7 @@ def test_create_cluster_boto3(): @mock_redshift -def test_create_cluster_boto3(): +def test_create_cluster_with_enhanced_vpc_routing_enabled(): client = boto3.client("redshift", region_name="us-east-1") response = client.create_cluster( DBName="test",