From f2bcb7480eedee338fa71d311815798007292e0c Mon Sep 17 00:00:00 2001 From: Josef Reidinger Date: Mon, 26 Feb 2018 15:19:31 +0100 Subject: [PATCH] changes from review --- package/yast2-storage-ng.changes | 2 +- test/y2partitioner/widgets/format_and_mount_test.rb | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package/yast2-storage-ng.changes b/package/yast2-storage-ng.changes index fae57485c1..930ea8179e 100644 --- a/package/yast2-storage-ng.changes +++ b/package/yast2-storage-ng.changes @@ -2,7 +2,7 @@ Fri Feb 23 14:57:51 UTC 2018 - jreidinger@suse.com - Do not allow to encrypt too small partition (bsc#1065071) -- Check that if separated "/boot" is used that it is big enough +- Check size for separate /boot - 4.0.111 ------------------------------------------------------------------- diff --git a/test/y2partitioner/widgets/format_and_mount_test.rb b/test/y2partitioner/widgets/format_and_mount_test.rb index 04a55fc1c7..fbd69706ef 100644 --- a/test/y2partitioner/widgets/format_and_mount_test.rb +++ b/test/y2partitioner/widgets/format_and_mount_test.rb @@ -293,13 +293,13 @@ end end - context "encrypt is checked and the partition is bigger then 2MiB" do + context "encrypt is checked and the partition is bigger than 2MiB" do it "returns true" do expect(subject.validate).to eq true end end - context "encrypt is checked and the partition is equal or smaller then 2MiB" do + context "encrypt is checked and the partition is equal or smaller than 2MiB" do before do expect(controller).to receive(:blk_device) .and_return(double(size: Y2Storage::DiskSize.MiB(1)))