aboutsummaryrefslogtreecommitdiffstats
path: root/test/channel
diff options
context:
space:
mode:
Diffstat (limited to 'test/channel')
-rw-r--r--test/channel/rejection_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/channel/rejection_test.rb b/test/channel/rejection_test.rb
index 0e9725742c..aa93396d44 100644
--- a/test/channel/rejection_test.rb
+++ b/test/channel/rejection_test.rb
@@ -5,7 +5,7 @@ require 'stubs/room'
class ActionCable::Channel::RejectionTest < ActiveSupport::TestCase
class SecretChannel < ActionCable::Channel::Base
def subscribed
- reject! if params[:id] > 0
+ reject if params[:id] > 0
end
end