Fix Rubocop offense

```
Offenses:

activesupport/lib/active_support/subscriber.rb:91:17:
C: Layout/SpaceAroundOperators: Operator = should be surrounded by a single space.
      event     = event_stack.pop
```
This commit is contained in:
bogdanvlviv 2018-07-26 23:39:29 +03:00
parent 09ec075f1e
commit 1933fbaecf
No known key found for this signature in database
GPG Key ID: E4ACD76A6DB6DFDD
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ module ActiveSupport
end
def finish(name, id, payload)
event = event_stack.pop
event = event_stack.pop
event.finish!
event.payload.merge!(payload)