Rubocop syntax updates #2711

This commit is contained in:
Priit Tark 2015-06-26 17:06:34 +03:00
parent e46c1130db
commit 59c73fca9e
9 changed files with 33 additions and 11 deletions

View file

@ -54,7 +54,7 @@ describe DomainMailer do
end
it 'should render verification url' do
@mail.body.encoded.should =~ /registrant\/domain_update_confirms/
@mail.body.encoded.should =~ %r{registrant\/domain_update_confirms}
end
end
@ -109,7 +109,7 @@ describe DomainMailer do
end
it 'should render verification url' do
@mail.body.encoded.should =~ /registrant\/domain_delete_con/ # somehowe delete_confirms not matching
@mail.body.encoded.should =~ %r{registrant\/domain_delete_con} # somehowe delete_confirms not matching
end
end
end