Skip to content

Commit

Permalink
Merge pull request #464 from aschnell/master
Browse files Browse the repository at this point in the history
- fixed typo
  • Loading branch information
aschnell committed Dec 13, 2017
2 parents 27656b8 + 872739f commit a17fdc4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/lib/y2partitioner/actions/controllers/lvm_vg.rb
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ def invalid_extent_size?
#
# @return [String]
def invalid_extent_size_message
_("The data entered in invalid. Insert a physical extent size larger than 1 KiB\n" \
_("The data entered is invalid. Insert a physical extent size larger than 1 KiB\n" \
"in powers of 2 and multiple of 128 KiB, for example, \"512 KiB\" or \"4 MiB\"")
end

Expand Down
8 changes: 4 additions & 4 deletions test/y2partitioner/actions/controllers/lvm_vg_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def dev(name)
it "contains a message for invalid extent size" do
errors = controller.extent_size_errors
expect(errors).to_not be_empty
expect(errors).to include(/data entered in invalid/)
expect(errors).to include(/data entered is invalid/)
end
end

Expand All @@ -179,7 +179,7 @@ def dev(name)
it "contains a message for invalid extent size" do
errors = controller.extent_size_errors
expect(errors).to_not be_empty
expect(errors).to include(/data entered in invalid/)
expect(errors).to include(/data entered is invalid/)
end
end

Expand All @@ -189,7 +189,7 @@ def dev(name)
it "contains a message for invalid extent size" do
errors = controller.extent_size_errors
expect(errors).to_not be_empty
expect(errors).to include(/data entered in invalid/)
expect(errors).to include(/data entered is invalid/)
end
end

Expand All @@ -199,7 +199,7 @@ def dev(name)
it "contains a message for invalid extent size" do
errors = controller.extent_size_errors
expect(errors).to_not be_empty
expect(errors).to include(/data entered in invalid/)
expect(errors).to include(/data entered is invalid/)
end
end

Expand Down

0 comments on commit a17fdc4

Please sign in to comment.