diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-01-16 19:47:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-16 19:47:46 +0100 |
commit | bc642ac24b49c14dca382e7aabbc16130293d2f4 (patch) | |
tree | 1bf55901185d1cac954ef216f7394d09c10df1f3 /spec/controllers | |
parent | 4ab42287c0bbcbd259bff229d66da8964a261aff (diff) |
Redesign public hashtag page to use a masonry layout (#9822)
Diffstat (limited to 'spec/controllers')
-rw-r--r-- | spec/controllers/tags_controller_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/controllers/tags_controller_spec.rb b/spec/controllers/tags_controller_spec.rb index 33ccaed61..69def90cf 100644 --- a/spec/controllers/tags_controller_spec.rb +++ b/spec/controllers/tags_controller_spec.rb @@ -17,7 +17,7 @@ RSpec.describe TagsController, type: :controller do it 'renders application layout' do get :show, params: { id: 'test', max_id: late.id } - expect(response).to render_template layout: 'application' + expect(response).to render_template layout: 'public' end end |