Skip to content

Commit

Permalink
WIP - test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mvollmer committed Nov 13, 2023
1 parent 11613df commit 4ef4098
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/verify/check-storage-mounting
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ class TestStorageMountingLUKS(storagelib.StorageCase):
"passphrase2": "vainu-reku-toma-rolle-kaja",
"mount_point": "/run/data"})
b.click(self.card_parent_link())
b.wait_text(self.card_row_col("LVM2 logical volumes", 1, 2), "ext4 filesystem")
b.wait_text(self.card_row_col("LVM2 logical volumes", 1, 2), "ext4 filesystem (encrypted)")
b.wait_text(self.card_row_col("LVM2 logical volumes", 1, 3), "/run/data")

# Format the second and also try to use /run/data as the mount point
Expand All @@ -452,7 +452,7 @@ class TestStorageMountingLUKS(storagelib.StorageCase):
self.dialog_wait_error("mount_point", "Mount point is already used for /dev/test/one")
self.dialog_cancel()
self.dialog_wait_close()
b.click(self.card_desc_parent())
b.click(self.card_parent_link())

# Format the first and re-use /run/data as the mount point.
# This should be allowed.
Expand All @@ -461,7 +461,7 @@ class TestStorageMountingLUKS(storagelib.StorageCase):
self.dialog({"type": "ext4",
"mount_point": "/run/data"})
b.click(self.card_parent_link())
b.wait_text(self.card_row_col("LVM2 logical volumes", 1, 2), "ext4 filesystem")
b.wait_text(self.card_row_col("LVM2 logical volumes", 1, 2), "ext4 filesystem (encrypted)")
b.wait_text(self.card_row_col("LVM2 logical volumes", 1, 3), "/run/data")

def testNeverAuto(self):
Expand Down

0 comments on commit 4ef4098

Please sign in to comment.