missed a few

This commit is contained in:
Douglas Eichelberger 2023-01-27 22:54:14 -08:00
parent 1dbeee826d
commit dc78e91edd
2 changed files with 6 additions and 6 deletions

View File

@ -355,8 +355,8 @@ describe RuboCop::Cop::Cask::StanzaGrouping do
context "when caveats is a heredoc" do context "when caveats is a heredoc" do
let(:caveats) do let(:caveats) do
<<-CAVEATS.undent <<~CAVEATS
caveats <<-EOS.undent caveats <<~EOS
This is a multiline caveat. This is a multiline caveat.
Let's hope it doesn't cause any problems! Let's hope it doesn't cause any problems!
@ -369,7 +369,7 @@ describe RuboCop::Cop::Cask::StanzaGrouping do
context "when caveats is a block" do context "when caveats is a block" do
let(:caveats) do let(:caveats) do
<<-CAVEATS.undent <<~CAVEATS
caveats do caveats do
puts 'This is a multiline caveat.' puts 'This is a multiline caveat.'

View File

@ -399,8 +399,8 @@ describe RuboCop::Cop::Cask::StanzaOrder do
context "when caveats is a heredoc" do context "when caveats is a heredoc" do
let(:caveats) do let(:caveats) do
<<-CAVEATS.undent <<~CAVEATS
caveats <<-EOS.undent caveats <<~EOS
This is a multiline caveat. This is a multiline caveat.
Let's hope it doesn't cause any problems! Let's hope it doesn't cause any problems!
@ -413,7 +413,7 @@ describe RuboCop::Cop::Cask::StanzaOrder do
context "when caveats is a block" do context "when caveats is a block" do
let(:caveats) do let(:caveats) do
<<-CAVEATS.undent <<~CAVEATS
caveats do caveats do
puts 'This is a multiline caveat.' puts 'This is a multiline caveat.'