Move comment to top of class to avoid lint error

This commit is contained in:
Mike Place 2017-01-05 13:14:52 -07:00 committed by GitHub
parent 3ec910cf34
commit e8c115f5d3

View File

@ -82,10 +82,10 @@ class MapConfTest(TestCase):
@patch('salt.cloud.Map.read', MagicMock(return_value=EXAMPLE_MAP))
def test_cloud_map_merge_conf(self):
self.maxDiff = None
'''
Ensure that nested values can be selectivly overridden in a map file
'''
self.maxDiff = None
opts = {'extension_modules': '/var/cache/salt/master/extmods',
'providers': EXAMPLE_PROVIDERS, 'profiles': EXAMPLE_PROFILES}
cloud_map = salt.cloud.Map(opts)