aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2016-07-26 15:53:56 -0300
committerSantiago Pastorino <santiago@wyeworks.com>2016-07-26 15:54:01 -0300
commit6594226c9ceec68fe2320e876f029f66cfd8c20e (patch)
treee08847877be37fec309e9585e021773d8a0d01e8
parentf2978409e9b8aca7b9f54472a06ae631032f3243 (diff)
downloadrails-6594226c9ceec68fe2320e876f029f66cfd8c20e.tar.gz
rails-6594226c9ceec68fe2320e876f029f66cfd8c20e.tar.bz2
rails-6594226c9ceec68fe2320e876f029f66cfd8c20e.zip
Be more explicit with the expected result
-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 fc24857570..5a711ae150 100644
--- a/actionpack/test/controller/integration_test.rb
+++ b/actionpack/test/controller/integration_test.rb
@@ -412,7 +412,7 @@ class IntegrationTestDefaultApp < ActionDispatch::IntegrationTest
end
def test_class_app_returns_ad_test_app_by_default
- assert_equal ActionDispatch.test_app, self.class.app
+ assert_equal 'fake_app', self.class.app
end
end