Skip to content

Commit 735105d

Browse files
authored
Merge pull request #67 from ruslandoga/fix-ci-maybe
unnest endpoint_opts in tests to fix some ci failures
2 parents 792396d + 9869f9f commit 735105d

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

.github/workflows/site_encrypt.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: erlef/setup-elixir@v1
1616
with:
1717
otp-version: 27.0
18-
elixir-version: 1.17.0
18+
elixir-version: 1.17.1
1919

2020
- name: Restore cached deps
2121
uses: actions/cache@v1

.tool-versions

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
erlang 26.0
2-
elixir 1.16-otp-26
1+
erlang 27.0
2+
elixir 1.17.1-otp-27

test/site_encrypt_test.exs

+4-6
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,10 @@ for {input, index} <- Enum.with_index(inputs),
3030
setup_all do
3131
start_supervised!({
3232
TestEndpoint,
33-
endpoint_opts: [
34-
adapter: unquote(input.adapter),
35-
http: [port: unquote(http_port)],
36-
https: [port: unquote(https_port)],
37-
url: [scheme: "https", host: "localhost", port: unquote(https_port)]
38-
]
33+
adapter: unquote(input.adapter),
34+
http: [port: unquote(http_port)],
35+
https: [port: unquote(https_port)],
36+
url: [scheme: "https", host: "localhost", port: unquote(https_port)]
3937
})
4038

4139
:ok

0 commit comments

Comments
 (0)