diff options
author | Nikolas Hermanns <nikolas.hermanns@ericsson.com> | 2016-12-13 16:39:29 +0100 |
---|---|---|
committer | Nikolas Hermanns <nikolas.hermanns@ericsson.com> | 2016-12-13 16:39:29 +0100 |
commit | d6c385b653d814318eb5733ebc18ba9677b83d97 (patch) | |
tree | 2a4a875194297b63c4201e681eef0488b94f4326 /odl-pipeline/lib/test_environment/test_environment.py | |
parent | d5c17afdc63a440cb71a06f01f18809513976d6a (diff) |
Bugfix " in the environment
Change-Id: I22b67aa947391a0077e11562b29c5b46af1e9c4e
Signed-off-by: Nikolas Hermanns <nikolas.hermanns@ericsson.com>
Diffstat (limited to 'odl-pipeline/lib/test_environment/test_environment.py')
-rwxr-xr-x | odl-pipeline/lib/test_environment/test_environment.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/odl-pipeline/lib/test_environment/test_environment.py b/odl-pipeline/lib/test_environment/test_environment.py index ed961d2..d4894a9 100755 --- a/odl-pipeline/lib/test_environment/test_environment.py +++ b/odl-pipeline/lib/test_environment/test_environment.py @@ -18,7 +18,7 @@ class TestEnvironment(Service): def run(self, sys_args, config): self.BUILD_DIR = '../build/apex-%s' % sys_args.env_number - self.env = sys_args.env_number + self.env = str(sys_args.env_number).replace('"', '') self.cleanup() if sys_args.cleanup: return |