summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--wintest/wintest.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/wintest/wintest.py b/wintest/wintest.py
index 2939b0f2ee..189d251ada 100644
--- a/wintest/wintest.py
+++ b/wintest/wintest.py
@@ -90,7 +90,10 @@ class wintest():
def set_vms(self, vms):
'''set a list of VMs to test'''
if vms is not None:
- self.vms = vms.split(',')
+ self.vms = []
+ for vm in vms.split(','):
+ vm = vm.upper()
+ self.vms.append(vm)
def skip(self, step):
'''return True if we should skip a step'''