aboutsummaryrefslogtreecommitdiffstats
path: root/ice_validator/preload
diff options
context:
space:
mode:
authorLovett, Trevor <trevor.lovett@att.com>2019-09-18 11:59:28 -0500
committerLovett, Trevor (tl2972) <tl2972@att.com>2019-09-18 12:00:31 -0500
commit3c68447c6146b045064d51eba3d024dcbc0b684f (patch)
treee85a688ab7e6924c860c877f962fefec2c004e54 /ice_validator/preload
parent3b6376d6ef6d8e90ad9ef4cc33ab610c501015d2 (diff)
[VVP] Replaced test.csar in preload_tests
Issue-ID: VVP-311 Change-Id: I8b669a31511348a70915ccc91be597b8df097ae2 Signed-off-by: Lovett, Trevor <trevor.lovett@att.com>
Diffstat (limited to 'ice_validator/preload')
-rw-r--r--ice_validator/preload/environment.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ice_validator/preload/environment.py b/ice_validator/preload/environment.py
index 3570dc5..4851fcb 100644
--- a/ice_validator/preload/environment.py
+++ b/ice_validator/preload/environment.py
@@ -168,7 +168,7 @@ class CloudServiceArchive:
return self._service.get("metadata", {}).get("name")
def __repr__(self):
- return f"CSAR (path={self.csar_path.name}, name={self.service_name})"
+ return "CSAR (path={}, name={})".format(self.csar_path.name, self.service_name)
def __str__(self):
return repr(self)
@@ -277,4 +277,4 @@ class PreloadEnvironment:
return self.base_dir.name
def __repr__(self):
- return f"PreloadEnvironment(name={self.name})"
+ return "PreloadEnvironment(name={})".format(self.name)