Skip to content

Commit

Permalink
fix(access) elixir tests again
Browse files Browse the repository at this point in the history
  • Loading branch information
janl committed Nov 11, 2022
1 parent 6c0aa61 commit 459d999
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/elixir/test/proxyauth_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ defmodule ProxyAuthTest do
)

assert resp2.body["userCtx"]["name"] == "[email protected]"
assert resp2.body["userCtx"]["roles"] == ["test_role"]
assert resp2.body["userCtx"]["roles"] == ["_users", "test_role"]
assert resp2.body["info"]["authenticated"] == "proxy"
assert resp2.body["ok"] == true

Expand Down Expand Up @@ -124,7 +124,7 @@ defmodule ProxyAuthTest do
)

assert resp2.body["userCtx"]["name"] == "[email protected]"
assert resp2.body["userCtx"]["roles"] == ["test_role_1", "test_role_2"]
assert resp2.body["userCtx"]["roles"] == ["_users", "test_role_1", "test_role_2"]
assert resp2.body["info"]["authenticated"] == "proxy"
assert resp2.body["ok"] == true

Expand Down

0 comments on commit 459d999

Please sign in to comment.