Skip to content

Commit

Permalink
Change from review
Browse files Browse the repository at this point in the history
  • Loading branch information
jreidinger committed Jun 12, 2018
1 parent a2fa500 commit 0206227
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions test/boot_arch_test.rb
Expand Up @@ -63,7 +63,7 @@ def stub_arch(arch)
expect(subject.DefaultKernelParams("")).to_not include("resume")
end

it "adds quiet parameter" do
it "adds \"quiet\" parameter" do
expect(subject.DefaultKernelParams("/dev/sda2")).to include(" quiet")
end
end
Expand Down Expand Up @@ -127,7 +127,7 @@ def stub_arch(arch)
expect(subject.DefaultKernelParams("/dev/sda2")).to eq "console=ttyS0 resume=/dev/sda2 console=ttyS1 quiet"
end

it "adds quiet parameter" do
it "adds \"quiet\" parameter" do
expect(subject.DefaultKernelParams("/dev/sda2")).to include(" quiet")
end
end
Expand Down
2 changes: 1 addition & 1 deletion test/grub2base_test.rb
Expand Up @@ -241,7 +241,7 @@
expect(subject.grub_default.kernel_params.serialize).to include("product_aurora=shot")
end

it "adds quiet argument" do
it "adds \"quiet\" argument" do
subject.propose

expect(subject.grub_default.kernel_params.serialize).to include("quiet")
Expand Down

0 comments on commit 0206227

Please sign in to comment.