From 64d6890799691e078763db6fb2666a774664ec3a Mon Sep 17 00:00:00 2001 From: Jan Pokorny Date: Thu, 6 Jun 2024 11:54:48 +0200 Subject: [PATCH] test: lvm pool members test fix tests_lvm_pool_members started to fail. It tried to create a device with a requested size (20m) that was less than minimal allowed size (300m) for that type of volume. Role automatically resized the device to allowed size. That lead to discrepancy in actual and expected size values. Increasing the requested device size to be same or larger than minimal fixes the issue. --- tests/tests_lvm_pool_members.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests_lvm_pool_members.yml b/tests/tests_lvm_pool_members.yml index 63c10c7c..320626e8 100644 --- a/tests/tests_lvm_pool_members.yml +++ b/tests/tests_lvm_pool_members.yml @@ -6,7 +6,7 @@ storage_safe_mode: false storage_use_partitions: true volume_group_size: '10g' - volume_size: '20m' + volume_size: '300m' tags: - tests::lvm