From bee27c9ce90e420b13e304c2aed365a2e7dfc926 Mon Sep 17 00:00:00 2001 From: Jason Zimdars Date: Wed, 16 Apr 2025 10:37:46 -0500 Subject: [PATCH] Whitespace --- test/controllers/users_controller_test.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/controllers/users_controller_test.rb b/test/controllers/users_controller_test.rb index 3efbe0489..ff7ec0f2c 100644 --- a/test/controllers/users_controller_test.rb +++ b/test/controllers/users_controller_test.rb @@ -5,8 +5,8 @@ class UsersControllerTest < ActionDispatch::IntegrationTest sign_in_as :kevin get users_path - assert_match /#{users(:david).name}/, @response.body - assert_match /#{users(:kevin).name}/, @response.body + assert_match /#{users(:david).name}/, @response.body + assert_match /#{users(:kevin).name}/, @response.body end test "new" do @@ -20,7 +20,7 @@ class UsersControllerTest < ActionDispatch::IntegrationTest test "create" do assert_difference -> { User.active.count }, +1 do post users_path(params: { join_code: accounts(:"37s").join_code }), - params: { user: { name: "Dash", email_address: "dash@example.com", password: "123" } } + params: { user: { name: "Dash", email_address: "dash@example.com", password: "123" } } assert_redirected_to root_path end @@ -32,7 +32,7 @@ class UsersControllerTest < ActionDispatch::IntegrationTest sign_in_as :kevin get user_path(users(:david)) - assert_match /#{users(:david).name}/, @response.body + assert_match /#{users(:david).name}/, @response.body end test "update oneself" do