diff options
author | aus-social <42644106+aus-social@users.noreply.github.com> | 2018-10-05 01:38:04 +1000 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2018-10-04 17:38:04 +0200 |
commit | 0a4739c7324a96cee148373ccc7b57b9c7097b42 (patch) | |
tree | 8c6681e31fdab9b090c7a33105171460e31d5217 /spec/views | |
parent | a46ab86adfc9e4ea182af9a555237f17071e194c (diff) |
lint pass 2 (#8878)
* Code quality pass * Typofix * Update applications_controller_spec.rb * Update applications_controller_spec.rb
Diffstat (limited to 'spec/views')
-rw-r--r-- | spec/views/stream_entries/show.html.haml_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/views/stream_entries/show.html.haml_spec.rb b/spec/views/stream_entries/show.html.haml_spec.rb index e08419596..93f0adb99 100644 --- a/spec/views/stream_entries/show.html.haml_spec.rb +++ b/spec/views/stream_entries/show.html.haml_spec.rb @@ -49,7 +49,7 @@ describe 'stream_entries/show.html.haml', without_verify_partial_doubles: true d assign(:stream_entry, reply.stream_entry) assign(:account, alice) assign(:type, reply.stream_entry.activity_type.downcase) - assign(:ancestors, reply.stream_entry.activity.ancestors(1, bob) ) + assign(:ancestors, reply.stream_entry.activity.ancestors(1, bob)) assign(:descendant_threads, [{ statuses: reply.stream_entry.activity.descendants(1) }]) render |