DEV: Fix random typos (#21638)

This commit is contained in:
Jarek Radosz
2023-05-18 15:34:46 +02:00
committed by GitHub
parent edbfe91623
commit f2339d2d5b
16 changed files with 21 additions and 21 deletions

View File

@ -22,11 +22,11 @@ RSpec.describe PrettyText do
HTML
email_formated = <<~HTML
email_formatted = <<~HTML
<p><a href="https://www.youtube.com/watch?v=kPRA0W1kECg">15 Sorting Algorithms in 6 Minutes</a></p>
<p><a href="https://vimeo.com/786646692">Dear Rich</a></p>
HTML
expect(PrettyText.format_for_email(cooked_html, post)).to match_html(email_formated)
expect(PrettyText.format_for_email(cooked_html, post)).to match_html(email_formatted)
end
end