From 60a224e5cda0cc55feea096b70f5cbdb74180652 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20G=C3=A2teau?= Date: Tue, 5 Aug 2014 16:10:20 +0200 Subject: [PATCH] 3MB is too small for ext4: set a bigger new size for shrink --- src/modules/partition/tests/JobTests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/partition/tests/JobTests.cpp b/src/modules/partition/tests/JobTests.cpp index adde20f60..dc08d21e5 100644 --- a/src/modules/partition/tests/JobTests.cpp +++ b/src/modules/partition/tests/JobTests.cpp @@ -233,7 +233,7 @@ JobTests::testResizePartition_data() QTest::addColumn< int >( "newSizeMB" ); QTest::newRow("grow") << 10 << 5 << 10 << 7; - QTest::newRow("shrink") << 10 << 6 << 10 << 3; + QTest::newRow("shrink") << 10 << 7 << 10 << 5; QTest::newRow("moveLeft") << 10 << 5 << 8 << 5; QTest::newRow("moveRight") << 10 << 5 << 12 << 5; }