Remove unused import Closes #687
Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/17c2217b Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/17c2217b Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/17c2217b Branch: refs/heads/trunk Commit: 17c2217b591589f28bb61565197f5c559cdf9e97 Parents: 7088c49 Author: Geunwoo Shin <[email protected]> Authored: Mon Feb 8 21:23:18 2016 +0900 Committer: anthony-shaw <[email protected]> Committed: Tue Feb 9 15:12:53 2016 +1100 ---------------------------------------------------------------------- libcloud/test/common/test_aws.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/17c2217b/libcloud/test/common/test_aws.py ---------------------------------------------------------------------- diff --git a/libcloud/test/common/test_aws.py b/libcloud/test/common/test_aws.py index 7d98376..d2ff0a2 100644 --- a/libcloud/test/common/test_aws.py +++ b/libcloud/test/common/test_aws.py @@ -4,10 +4,9 @@ from datetime import datetime import mock +from libcloud.common.aws import AWSRequestSignerAlgorithmV4 from libcloud.common.aws import SignedAWSConnection from libcloud.common.aws import UNSIGNED_PAYLOAD -from libcloud.common.aws import AWSRequestSignerAlgorithmV2 -from libcloud.common.aws import AWSRequestSignerAlgorithmV4 from libcloud.test import LibcloudTestCase
