From: salimfadhley Date: Sun, 23 Jun 2013 06:46:27 +0000 (+0100) Subject: pep8 format X-Git-Tag: v0.2.23~126^2~13 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=afc7dbb06c3cca7b08c8dd5b3536f7c2df066b02;p=tools%2Fpython-jenkinsapi.git pep8 format --- diff --git a/jenkinsapi_tests/systests/test_parameterized_builds.py b/jenkinsapi_tests/systests/test_parameterized_builds.py index ef58915..0974bf8 100644 --- a/jenkinsapi_tests/systests/test_parameterized_builds.py +++ b/jenkinsapi_tests/systests/test_parameterized_builds.py @@ -50,6 +50,7 @@ echo $B > b.txt """.strip() + class TestParameterizedBuilds(BaseSystemTest): def test_invoke_job_parameterized(self): @@ -57,7 +58,7 @@ class TestParameterizedBuilds(BaseSystemTest): job_name = 'create_%s' % random_string() job = self.jenkins.create_job(job_name, JOB_CONFIG) - job.invoke(block=True, build_params={ 'B':param_B}) + job.invoke(block=True, build_params={'B': param_B}) b = job.get_last_build() while b.is_running():