From aae2f3e1e8047682465a48884065dd419bd6e1fc Mon Sep 17 00:00:00 2001 From: JG Date: Wed, 25 May 2022 08:18:40 +0100 Subject: [PATCH] removed hardcoded password --- spec/features/log_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/features/log_spec.rb b/spec/features/log_spec.rb index 940ab7de8..d120d4119 100644 --- a/spec/features/log_spec.rb +++ b/spec/features/log_spec.rb @@ -11,7 +11,7 @@ RSpec.describe "Log Features" do before do visit("/logs") fill_in("user[email]", with: user.email) - fill_in("user[password]", with: "pAssword1") + fill_in("user[password]", with: user.password) click_button("Sign in") end