Skip to content

Commit

Permalink
changes from review
Browse files Browse the repository at this point in the history
  • Loading branch information
jreidinger committed Feb 26, 2018
1 parent a824011 commit f2bcb74
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package/yast2-storage-ng.changes
Expand Up @@ -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

-------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions test/y2partitioner/widgets/format_and_mount_test.rb
Expand Up @@ -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)))
Expand Down

0 comments on commit f2bcb74

Please sign in to comment.