aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2010-10-01 17:54:50 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2010-10-01 17:54:50 -0700
commitdfa331ae154c0475dfc631528071bdb06947acc2 (patch)
treeb5330b8801a55fc491e8c985f21c95856a51f052
parent61e8b23fe599ac54382251b44d9690f08a759fe1 (diff)
downloadrails-dfa331ae154c0475dfc631528071bdb06947acc2.tar.gz
rails-dfa331ae154c0475dfc631528071bdb06947acc2.tar.bz2
rails-dfa331ae154c0475dfc631528071bdb06947acc2.zip
use a method that actually exists
-rw-r--r--actionpack/test/controller/integration_test.rb2
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