Skip to content

Commit

Permalink
unused imports in last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jantman committed Jun 21, 2015
1 parent 3ea80f4 commit 207cea7
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions awslimitchecker/tests/services/test_autoscaling.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@
sys.version_info[0] < 3 or
sys.version_info[0] == 3 and sys.version_info[1] < 4
):
from mock import patch, call, Mock, DEFAULT
from mock import patch, call, Mock
else:
from unittest.mock import patch, call, Mock, DEFAULT
from unittest.mock import patch, call, Mock


class Test_AutoscalingService(object):
Expand Down
4 changes: 2 additions & 2 deletions awslimitchecker/tests/services/test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@
sys.version_info[0] < 3 or
sys.version_info[0] == 3 and sys.version_info[1] < 4
):
from mock import patch, call, Mock, DEFAULT
from mock import patch, call, Mock
else:
from unittest.mock import patch, call, Mock, DEFAULT
from unittest.mock import patch, call, Mock


class AwsServiceTester(_AwsService):
Expand Down
4 changes: 2 additions & 2 deletions awslimitchecker/tests/services/test_newservice.py.example
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ if (
sys.version_info[0] < 3 or
sys.version_info[0] == 3 and sys.version_info[1] < 4
):
from mock import patch, call, Mock, DEFAULT
from mock import patch, call, Mock
else:
from unittest.mock import patch, call, Mock, DEFAULT
from unittest.mock import patch, call, Mock


class Test_XXNewServiceXXService(object):
Expand Down
4 changes: 2 additions & 2 deletions awslimitchecker/tests/services/test_vpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@
sys.version_info[0] < 3 or
sys.version_info[0] == 3 and sys.version_info[1] < 4
):
from mock import patch, call, Mock, DEFAULT
from mock import patch, call, Mock
else:
from unittest.mock import patch, call, Mock, DEFAULT
from unittest.mock import patch, call, Mock


class Test_VpcService(object):
Expand Down
4 changes: 2 additions & 2 deletions awslimitchecker/tests/test_limit.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
sys.version_info[0] < 3 or
sys.version_info[0] == 3 and sys.version_info[1] < 4
):
from mock import patch, call, Mock, DEFAULT
from mock import patch, call, Mock
else:
from unittest.mock import patch, call, Mock, DEFAULT
from unittest.mock import patch, call, Mock


class TestAwsLimit(object):
Expand Down
4 changes: 2 additions & 2 deletions awslimitchecker/tests/test_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@
sys.version_info[0] < 3 or
sys.version_info[0] == 3 and sys.version_info[1] < 4
):
from mock import patch, call, Mock, DEFAULT
from mock import patch, call, Mock
else:
from unittest.mock import patch, call, Mock, DEFAULT
from unittest.mock import patch, call, Mock


def red(s):
Expand Down
4 changes: 2 additions & 2 deletions awslimitchecker/tests/test_trustedadvisor.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@
sys.version_info[0] < 3 or
sys.version_info[0] == 3 and sys.version_info[1] < 4
):
from mock import patch, call, Mock, DEFAULT
from mock import patch, call, Mock
else:
from unittest.mock import patch, call, Mock, DEFAULT
from unittest.mock import patch, call, Mock


pb = 'awslimitchecker.trustedadvisor.TrustedAdvisor'
Expand Down

0 comments on commit 207cea7

Please sign in to comment.