Skip to content

Commit

Permalink
Use http in tests to avoid TLS errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Nitemaeric committed Jan 2, 2024
1 parent b2a311e commit 7ed6815
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion spec/system/claims/view_organisations_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

RSpec.describe "View organisations", type: :system do
around do |example|
Capybara.app_host = "https://#{ENV["CLAIMS_HOST"]}"
Capybara.app_host = "http://#{ENV["CLAIMS_HOST"]}"
example.run
Capybara.app_host = nil
end
Expand Down
2 changes: 1 addition & 1 deletion spec/system/placements/view_organisations_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

RSpec.describe "View organisations", type: :system do
around do |example|
Capybara.app_host = "https://#{ENV["PLACEMENTS_HOST"]}"
Capybara.app_host = "http://#{ENV["PLACEMENTS_HOST"]}"
example.run
Capybara.app_host = nil
end
Expand Down

0 comments on commit 7ed6815

Please sign in to comment.