diff options
author | Daniel Colson <danieljamescolson@gmail.com> | 2018-01-24 22:04:11 -0500 |
---|---|---|
committer | Daniel Colson <danieljamescolson@gmail.com> | 2018-01-25 23:32:58 -0500 |
commit | 211adb47e76b358ea15a3f756431c042ab231c23 (patch) | |
tree | f688daea11af3dce588e3c5a9791722a2f3aaec5 /actioncable/test/channel | |
parent | 0d50cae996c51630361e8514e1f168b0c48957e1 (diff) | |
download | rails-211adb47e76b358ea15a3f756431c042ab231c23.tar.gz rails-211adb47e76b358ea15a3f756431c042ab231c23.tar.bz2 rails-211adb47e76b358ea15a3f756431c042ab231c23.zip |
Change refute to assert_not
Diffstat (limited to 'actioncable/test/channel')
-rw-r--r-- | actioncable/test/channel/stream_test.rb | 2 |
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 |