aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable
diff options
context:
space:
mode:
authorRyo Hashimoto <ryohashimoto@gmail.com>2015-12-19 01:09:16 +0900
committerRyo Hashimoto <ryohashimoto@gmail.com>2015-12-19 01:09:16 +0900
commit161dc68599db2b548524bade0816adeba7f95f15 (patch)
treeb45521413a8a2ea7bebfe5d61d36a584299dab92 /actioncable
parent6a2c3c4c83b03d9c508e394ab8c5a636687d11f1 (diff)
downloadrails-161dc68599db2b548524bade0816adeba7f95f15.tar.gz
rails-161dc68599db2b548524bade0816adeba7f95f15.tar.bz2
rails-161dc68599db2b548524bade0816adeba7f95f15.zip
Fix `receive` spelling
Diffstat (limited to 'actioncable')
-rw-r--r--actioncable/test/channel/base_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actioncable/test/channel/base_test.rb b/actioncable/test/channel/base_test.rb
index c18ddc5218..80bea404cd 100644
--- a/actioncable/test/channel/base_test.rb
+++ b/actioncable/test/channel/base_test.rb
@@ -137,7 +137,7 @@ class ActionCable::Channel::BaseTest < ActiveSupport::TestCase
assert_equal [ :chatters ], @channel.last_action
end
- test "should dispatch recieve action when perform_action is called with empty action" do
+ test "should dispatch receive action when perform_action is called with empty action" do
data = { 'content' => 'hello' }
@channel.perform_action data
assert_equal [ :receive ], @channel.last_action