Commit edb7a544 authored by Łukasz Nowak's avatar Łukasz Nowak

software/kvm: Fix py3 test compatibility

parent fe72c661
Pipeline #11496 failed with stage
in 0 seconds
......@@ -592,7 +592,7 @@ class TestBootImageUrlList(InstanceTestCase):
kvm_process = psutil.Process(kvm_pid)
software_root = '/'.join([
self.slap.software_directory,
hashlib.md5(self.getSoftwareURL()).hexdigest()])
hashlib.md5(self.getSoftwareURL().encode('utf-8')).hexdigest()])
for entry in kvm_process.cmdline():
if entry.startswith('file') and 'media=cdrom' in entry:
# do cleanups
......@@ -774,7 +774,7 @@ class TestBootImageUrlSelect(TestBootImageUrlList):
kvm_process = psutil.Process(kvm_pid)
software_root = '/'.join([
self.slap.software_directory,
hashlib.md5(self.getSoftwareURL()).hexdigest()])
hashlib.md5(self.getSoftwareURL().encode('utf-8')).hexdigest()])
for entry in kvm_process.cmdline():
if entry.startswith('file') and 'media=cdrom' in entry:
# do cleanups
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment