diff --git a/awslimitchecker/tests/services/test_ebs.py b/awslimitchecker/tests/services/test_ebs.py index 532b16ce..486b8887 100644 --- a/awslimitchecker/tests/services/test_ebs.py +++ b/awslimitchecker/tests/services/test_ebs.py @@ -40,7 +40,7 @@ import sys from awslimitchecker.services.ebs import _EbsService from awslimitchecker.limit import AwsLimit -import result_fixtures +from awslimitchecker.tests.services import result_fixtures # https://code.google.com/p/mock/issues/detail?id=249 # py>=3.4 should use unittest.mock not the mock package on pypi diff --git a/awslimitchecker/tests/services/test_ec2.py b/awslimitchecker/tests/services/test_ec2.py index 6b08350c..1810f9bc 100644 --- a/awslimitchecker/tests/services/test_ec2.py +++ b/awslimitchecker/tests/services/test_ec2.py @@ -38,7 +38,7 @@ """ import sys -import result_fixtures +from awslimitchecker.tests.services import result_fixtures from awslimitchecker.services.ec2 import _Ec2Service from awslimitchecker.limit import AwsLimit diff --git a/awslimitchecker/tests/services/test_elasticache.py b/awslimitchecker/tests/services/test_elasticache.py index 079de378..6d4c234b 100644 --- a/awslimitchecker/tests/services/test_elasticache.py +++ b/awslimitchecker/tests/services/test_elasticache.py @@ -38,7 +38,7 @@ """ import sys -import result_fixtures +from awslimitchecker.tests.services import result_fixtures from botocore.exceptions import ClientError from awslimitchecker.services.elasticache import _ElastiCacheService import pytest diff --git a/awslimitchecker/tests/services/test_elb.py b/awslimitchecker/tests/services/test_elb.py index ecea0e9c..676d6599 100644 --- a/awslimitchecker/tests/services/test_elb.py +++ b/awslimitchecker/tests/services/test_elb.py @@ -38,7 +38,7 @@ """ import sys -import result_fixtures +from awslimitchecker.tests.services import result_fixtures from awslimitchecker.services.elb import _ElbService # https://code.google.com/p/mock/issues/detail?id=249 diff --git a/awslimitchecker/tests/services/test_newservice.py.example b/awslimitchecker/tests/services/test_newservice.py.example index 835279f1..f3eb6f01 100644 --- a/awslimitchecker/tests/services/test_newservice.py.example +++ b/awslimitchecker/tests/services/test_newservice.py.example @@ -38,7 +38,7 @@ Jason Antman """ import sys -import result_fixtures +from awslimitchecker.tests.services import result_fixtures from awslimitchecker.services.XXnewserviceXX import _XXNewServiceXXService # https://code.google.com/p/mock/issues/detail?id=249 diff --git a/awslimitchecker/tests/services/test_rds.py b/awslimitchecker/tests/services/test_rds.py index 45f5ddde..186d4d88 100644 --- a/awslimitchecker/tests/services/test_rds.py +++ b/awslimitchecker/tests/services/test_rds.py @@ -38,7 +38,7 @@ """ import sys -import result_fixtures +from awslimitchecker.tests.services import result_fixtures from awslimitchecker.services.rds import _RDSService # https://code.google.com/p/mock/issues/detail?id=249 diff --git a/awslimitchecker/tests/services/test_vpc.py b/awslimitchecker/tests/services/test_vpc.py index 5cc54663..1a8f754f 100644 --- a/awslimitchecker/tests/services/test_vpc.py +++ b/awslimitchecker/tests/services/test_vpc.py @@ -38,7 +38,7 @@ """ import sys -import result_fixtures +from awslimitchecker.tests.services import result_fixtures from awslimitchecker.services.vpc import _VpcService # https://code.google.com/p/mock/issues/detail?id=249