From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=profusion-mobi.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=LyhuKmvR7jj0a3gItPkDLMwDUOvGwe4r87KK7SJRe4A=; b=waRtFYDeRWYrTQMmQuO5pEtS84hIcemTzoup6dDOoK7TX7baQWsxU8oAzSKFghXC0H 9L/bIqweYCPRKVmqGj84GYSmJpn0ImvbLvSKmfMWKmUZlVfVuN8Ud5BimwaXJhi4b/cQ BLgFZiWkPurmeejDEqfpwo8nczy8qlPJgkBMDBkvTYGQHB1TZv8HIkYcW7uhmiudCBdu xmcz4IuauaQISP/01fZDF5ft7mlAaVZ4nI6+6Tj0bNLtCmV4Kdo012/qrKRxgg7GwkcE VbY6syDwOALj45TIjhikOso+EUnZ9rMXx1C98jNzUcvUH4LUQivCbitvbbREJ/lA3tDF gEYg== From: Guilherme Campos Camargo Date: Wed, 28 Mar 2018 21:08:28 -0300 Message-Id: <20180329000832.12268-13-guicc@profusion.mobi> In-Reply-To: <20180329000832.12268-1-guicc@profusion.mobi> References: <20180329000832.12268-1-guicc@profusion.mobi> Subject: [Fuego] [PATCH 12/16] Minor style/PEP8 fixes List-Id: Mailing list for the Fuego test framework List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: fuego@lists.linuxfoundation.org Signed-off-by: Guilherme Campos Camargo --- engine/tests/Functional.fuegotest/test_run.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/engine/tests/Functional.fuegotest/test_run.py b/engine/tests/Functional.fuegotest/test_run.py index 99bd309..f62ebc1 100755 --- a/engine/tests/Functional.fuegotest/test_run.py +++ b/engine/tests/Functional.fuegotest/test_run.py @@ -498,7 +498,8 @@ def main(): parser.add_argument('--no-rm-container', help='Do not remove the container after tests are ' 'complete.', - dest='rm_test_container', default=True, action='store_false') + dest='rm_test_container', + default=True, action='store_false') args = parser.parse_args() LOGGER.debug('Changing working dir to \'%s\'', args.working_dir) @@ -534,7 +535,8 @@ def main(): ShExpect('ftc list-jobs', r'.*docker\.testplan_fuego_tests\.batch.*'), ClickLink(linktext='docker'), - CheckText(_id='projectstatus', text='docker.testplan_fuego_tests.batch'), + CheckText(_id='projectstatus', + text='docker.testplan_fuego_tests.batch'), Back(), # Install Views -- 2.16.2