This is an automated email from the ASF dual-hosted git repository. jan pushed a commit to branch rebase/access-2023 in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit 9ed14580c263ca0c321974599c140e4883e29277 Author: Jan Lehnardt <[email protected]> AuthorDate: Sat Aug 20 12:38:24 2022 +0200 fix(access) elixir tests again --- test/elixir/test/proxyauth_test.exs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/elixir/test/proxyauth_test.exs b/test/elixir/test/proxyauth_test.exs index 2c6e3d530..9c9638d52 100644 --- a/test/elixir/test/proxyauth_test.exs +++ b/test/elixir/test/proxyauth_test.exs @@ -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 @@ -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
