From ce150a8295025e2f329bb95f6b9d3848964cfc1b Mon Sep 17 00:00:00 2001 From: Ryan Brown Date: Mon, 27 Feb 2017 11:15:02 -0500 Subject: [PATCH] [cloud] S3 tests check for boto, but then ask for boto3 in error message (#22002) --- test/units/modules/cloud/amazon/test_s3.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/units/modules/cloud/amazon/test_s3.py b/test/units/modules/cloud/amazon/test_s3.py index 4eab5360017..4c50a242e9b 100644 --- a/test/units/modules/cloud/amazon/test_s3.py +++ b/test/units/modules/cloud/amazon/test_s3.py @@ -7,7 +7,7 @@ except ImportError: HAS_BOTO = False if not HAS_BOTO: - raise SkipTest("test_s3.py requires the python module 'boto3' and 'botocore'") + raise SkipTest("test_s3.py requires the python module 'boto'") import unittest import ansible.modules.cloud.amazon.s3 as s3