diff options
author | unarist <m.unarist@gmail.com> | 2017-07-15 02:57:49 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-07-14 19:57:49 +0200 |
commit | 8d224ad23bca8d4923e230e5495ee60197e44c3b (patch) | |
tree | 4c537498016e8f1f84ab75eb3f561c951109abda /spec/views/stream_entries | |
parent | e2685ccc81f04e1a63a97af80686bf85027418a6 (diff) |
Follow renaming of microformats2 gem (#4203)
Diffstat (limited to 'spec/views/stream_entries')
-rw-r--r-- | spec/views/stream_entries/show.html.haml_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/views/stream_entries/show.html.haml_spec.rb b/spec/views/stream_entries/show.html.haml_spec.rb index cc380e6ea..6cc3b117a 100644 --- a/spec/views/stream_entries/show.html.haml_spec.rb +++ b/spec/views/stream_entries/show.html.haml_spec.rb @@ -27,7 +27,7 @@ describe 'stream_entries/show.html.haml', without_verify_partial_doubles: true d render - mf2 = Microformats2.parse(rendered) + mf2 = Microformats.parse(rendered) expect(mf2.entry.name.to_s).to eq status.text expect(mf2.entry.url.to_s).not_to be_empty @@ -53,7 +53,7 @@ describe 'stream_entries/show.html.haml', without_verify_partial_doubles: true d render - mf2 = Microformats2.parse(rendered) + mf2 = Microformats.parse(rendered) expect(mf2.entry.name.to_s).to eq reply.text expect(mf2.entry.url.to_s).not_to be_empty |