fix type error
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Robert Kaussow 2019-10-20 23:51:27 +02:00
parent 72de2e003c
commit 6639fb7e0e
1 changed files with 1 additions and 1 deletions

View File

@ -16,5 +16,5 @@ def test_lvm_in_fstab(host):
def test_lvm_mounted(host):
mount = host.check_output("mount")
lvm = b"/dev/mapper/vg_test-lv_test on /mnt/data type ext4"
lvm = "/dev/mapper/vg_test-lv_test on /mnt/data type ext4"
assert lvm in mount