Pylint fix

This commit is contained in:
rallytime 2017-03-21 13:39:34 -06:00
parent 2222e1cae9
commit a6a7538fe4
2 changed files with 2 additions and 1 deletions

View File

@ -31,6 +31,7 @@ else:
UNTAR_FILE = os.path.join(ARCHIVE_DIR, 'custom/README') UNTAR_FILE = os.path.join(ARCHIVE_DIR, 'custom/README')
ARCHIVE_TAR_HASH = 'md5=7643861ac07c30fe7d2310e9f25ca514' ARCHIVE_TAR_HASH = 'md5=7643861ac07c30fe7d2310e9f25ca514'
STATE_DIR = os.path.join(integration.FILES, 'file', 'base')
class ArchiveTest(integration.ModuleCase, class ArchiveTest(integration.ModuleCase,

View File

@ -36,7 +36,7 @@ def _docker_py_version():
@skipIf(NO_MOCK, NO_MOCK_REASON) @skipIf(NO_MOCK, NO_MOCK_REASON)
@skipIf(dockerng_mod.HAS_DOCKER_PY is False, 'docker-py must be installed to run these tests. Skipping.') @skipIf(docker_mod.HAS_DOCKER_PY is False, 'docker-py must be installed to run these tests. Skipping.')
class DockerTestCase(TestCase): class DockerTestCase(TestCase):
''' '''
Validate docker module Validate docker module