diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2010-10-01 17:54:50 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2010-10-01 17:54:50 -0700 |
commit | dfa331ae154c0475dfc631528071bdb06947acc2 (patch) | |
tree | b5330b8801a55fc491e8c985f21c95856a51f052 /actionpack/test/controller | |
parent | 61e8b23fe599ac54382251b44d9690f08a759fe1 (diff) | |
download | rails-dfa331ae154c0475dfc631528071bdb06947acc2.tar.gz rails-dfa331ae154c0475dfc631528071bdb06947acc2.tar.bz2 rails-dfa331ae154c0475dfc631528071bdb06947acc2.zip |
use a method that actually exists
Diffstat (limited to 'actionpack/test/controller')
-rw-r--r-- | actionpack/test/controller/integration_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/integration_test.rb b/actionpack/test/controller/integration_test.rb index 4ff39fb76c..f0d62b0b13 100644 --- a/actionpack/test/controller/integration_test.rb +++ b/actionpack/test/controller/integration_test.rb @@ -167,7 +167,7 @@ end class IntegrationTestTest < Test::Unit::TestCase def setup - @test = ::ActionDispatch::IntegrationTest.new(:default_test) + @test = ::ActionDispatch::IntegrationTest.new(:app) @test.class.stubs(:fixture_table_names).returns([]) @session = @test.open_session end |