aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/controllers/resource_types_controller_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/controllers/resource_types_controller_test.rb b/test/controllers/resource_types_controller_test.rb
index a5ba2a3..c04a258 100644
--- a/test/controllers/resource_types_controller_test.rb
+++ b/test/controllers/resource_types_controller_test.rb
@@ -4,7 +4,7 @@ class ResourceTypesControllerTest < ActionDispatch::IntegrationTest
setup do
@resource_type = resource_types(:one)
@user = users(:one)
- post session_url, params: { session: { email_address: @user.email_address, password_digest: "password" } }
+ post session_url, params: { email_address: @user.email_address, password: "password" }
follow_redirect! # After login
end