aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable
diff options
context:
space:
mode:
authorDaniel Colson <danieljamescolson@gmail.com>2018-01-24 22:04:11 -0500
committerDaniel Colson <danieljamescolson@gmail.com>2018-01-25 23:32:58 -0500
commit211adb47e76b358ea15a3f756431c042ab231c23 (patch)
treef688daea11af3dce588e3c5a9791722a2f3aaec5 /actioncable
parent0d50cae996c51630361e8514e1f168b0c48957e1 (diff)
downloadrails-211adb47e76b358ea15a3f756431c042ab231c23.tar.gz
rails-211adb47e76b358ea15a3f756431c042ab231c23.tar.bz2
rails-211adb47e76b358ea15a3f756431c042ab231c23.zip
Change refute to assert_not
Diffstat (limited to 'actioncable')
-rw-r--r--actioncable/test/channel/stream_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actioncable/test/channel/stream_test.rb b/actioncable/test/channel/stream_test.rb
index eca06fe365..52e1ad81de 100644
--- a/actioncable/test/channel/stream_test.rb
+++ b/actioncable/test/channel/stream_test.rb
@@ -167,7 +167,7 @@ module ActionCable::StreamTests
@server.broadcast "channel", {}
wait_for_async
- refute Thread.current[:ran_callback], "User callback was not run through the worker pool"
+ assert_not Thread.current[:ran_callback], "User callback was not run through the worker pool"
end
end