Fix ChatRelayJob definition in Testing Guide

The `ChatRelayJob` under "14.3 Custom Assertions And Testing Broadcasts Inside Other Components" defined a `perform_later` method, which I think should just be `perform`.
This commit is contained in:
Julian Rubisch 2022-03-11 09:51:11 +01:00 committed by GitHub
parent 1bca3cc406
commit 66ff8b1439
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1950,7 +1950,7 @@ If you want to test the broadcasting made with `Channel.broadcast_to`, you shoul
```ruby
# app/jobs/chat_relay_job.rb
class ChatRelayJob < ApplicationJob
def perform_later(room, message)
def perform(room, message)
ChatChannel.broadcast_to room, text: message
end
end