diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2015-09-23 16:01:11 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2015-09-23 16:01:11 -0700 |
commit | f150edb64041c99724052a8d685f319210cfbd2d (patch) | |
tree | df265a2d999b9b01ace8cd133a95fccc09cf3899 | |
parent | 53549a7585b451f0d1d6b30a4529361138e56796 (diff) | |
download | rails-f150edb64041c99724052a8d685f319210cfbd2d.tar.gz rails-f150edb64041c99724052a8d685f319210cfbd2d.tar.bz2 rails-f150edb64041c99724052a8d685f319210cfbd2d.zip |
test framework allocates the controller for us
-rw-r--r-- | actionpack/test/controller/live_stream_test.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/actionpack/test/controller/live_stream_test.rb b/actionpack/test/controller/live_stream_test.rb index ab0c44cce5..c5711c658a 100644 --- a/actionpack/test/controller/live_stream_test.rb +++ b/actionpack/test/controller/live_stream_test.rb @@ -263,7 +263,6 @@ module ActionController end def test_write_to_stream - @controller = TestController.new get :basic_stream assert_equal "helloworld", @response.body assert_equal 'text/event-stream', @response.headers['Content-Type'] |