From 5f727f9068d7528e94e793a5b36ae10c78aacb3b Mon Sep 17 00:00:00 2001 From: Matt Jankowski Date: Sun, 14 May 2017 10:30:14 -0400 Subject: Update rails to version 5.0.3 (#3054) * Update rails to version 5.0.3 * Update aws-sdk to version 2.9.17 * Update capistrano to version 3.8.1 * Update climate_control to version 0.2.0 * Update debug_inspector to version 0.0.3 * Update et-orbi to version 1.0.4 * Update oj to version 3.0.7 * Update microformats2 to version 2.9.0 * Update lograge to version 0.5.1 * Clean up usage of Microformats2 object to remove deprecation warnings * Update microformats2 to version 3.0.1 --- spec/views/stream_entries/show.html.haml_spec.rb | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'spec/views/stream_entries/show.html.haml_spec.rb') diff --git a/spec/views/stream_entries/show.html.haml_spec.rb b/spec/views/stream_entries/show.html.haml_spec.rb index 7cbdf6762..cc380e6ea 100644 --- a/spec/views/stream_entries/show.html.haml_spec.rb +++ b/spec/views/stream_entries/show.html.haml_spec.rb @@ -32,8 +32,8 @@ describe 'stream_entries/show.html.haml', without_verify_partial_doubles: true d expect(mf2.entry.name.to_s).to eq status.text expect(mf2.entry.url.to_s).not_to be_empty - expect(mf2.entry.author.format.name.to_s).to eq alice.display_name - expect(mf2.entry.author.format.url.to_s).not_to be_empty + expect(mf2.entry.author.name.to_s).to eq alice.display_name + expect(mf2.entry.author.url.to_s).not_to be_empty end it 'has valid h-cites for p-in-reply-to and p-comment' do @@ -58,13 +58,13 @@ describe 'stream_entries/show.html.haml', without_verify_partial_doubles: true d expect(mf2.entry.name.to_s).to eq reply.text expect(mf2.entry.url.to_s).not_to be_empty - expect(mf2.entry.comment.format.url.to_s).not_to be_empty - expect(mf2.entry.comment.format.author.format.name.to_s).to eq carl.display_name - expect(mf2.entry.comment.format.author.format.url.to_s).not_to be_empty + expect(mf2.entry.comment.url.to_s).not_to be_empty + expect(mf2.entry.comment.author.name.to_s).to eq carl.display_name + expect(mf2.entry.comment.author.url.to_s).not_to be_empty - expect(mf2.entry.in_reply_to.format.url.to_s).not_to be_empty - expect(mf2.entry.in_reply_to.format.author.format.name.to_s).to eq alice.display_name - expect(mf2.entry.in_reply_to.format.author.format.url.to_s).not_to be_empty + expect(mf2.entry.in_reply_to.url.to_s).not_to be_empty + expect(mf2.entry.in_reply_to.author.name.to_s).to eq alice.display_name + expect(mf2.entry.in_reply_to.author.url.to_s).not_to be_empty end it 'has valid opengraph tags' do -- cgit