Fixed 1C/2T configuration issues.
[yardstick.git] / yardstick / network_services / helpers / samplevnf_helper.py
index dbc10b8..870409e 100644 (file)
@@ -222,7 +222,7 @@ class MultiPortConfig(object):
             return
 
         try:
-            self.start_core = 'h{}'.format(int(self.start_core))
+            self.start_core = '{}h'.format(int(self.start_core))
         except ValueError:
             self.start_core = int(self.start_core[:-1]) + 1