Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ GEM
net-http-persistent (~> 4.0)
nokogiri (~> 1, >= 1.10.8)
base64 (0.3.0)
bcrypt (3.1.20)
bcrypt (3.1.21)
benchmark (0.5.0)
better_html (2.1.1)
actionview (>= 6.0)
Expand Down Expand Up @@ -167,10 +167,10 @@ GEM
delayed_job_active_record (4.1.11)
activerecord (>= 3.0, < 9.0)
delayed_job (>= 3.0, < 5)
devise (4.9.4)
devise (5.0.3)
bcrypt (~> 3.0)
orm_adapter (~> 0.1)
railties (>= 4.1.0)
railties (>= 7.0)
responders
warden (~> 1.2.3)
devise_invitable (2.0.11)
Expand Down Expand Up @@ -317,7 +317,7 @@ GEM
activesupport (>= 4)
railties (>= 4)
request_store (~> 1.0)
loofah (2.25.0)
loofah (2.25.1)
crass (~> 1.0.2)
nokogiri (>= 1.12.0)
mail (2.8.1)
Expand Down Expand Up @@ -504,9 +504,9 @@ GEM
io-console (~> 0.5)
request_store (1.7.0)
rack (>= 1.4)
responders (3.1.1)
actionpack (>= 5.2)
railties (>= 5.2)
responders (3.2.0)
actionpack (>= 7.0)
railties (>= 7.0)
rexml (3.4.1)
rspec-core (3.13.6)
rspec-support (~> 3.13.0)
Expand Down
2 changes: 1 addition & 1 deletion spec/system/all_casa_admins/sessions/new_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
click_on "Log in"
end

expect(page).to have_text "Invalid Email or password"
expect(page).to have_text(/invalid email or password/i)
end

it "denies access to flipper" do
Expand Down
2 changes: 1 addition & 1 deletion spec/system/sessions/login_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
find("#log-in").click
end

expect(page).to have_content("Invalid Email or password.")
expect(page).to have_content(/invalid email or password/i)
end
end
end
2 changes: 1 addition & 1 deletion spec/system/sessions/new_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
find("#log-in").click
end

expect(page).to have_text "Invalid Email or password"
expect(page).to have_text(/invalid email or password/i)
end
end

Expand Down
Loading