summaryrefslogtreecommitdiff
path: root/test/elixir/lib/couch.ex
diff options
context:
space:
mode:
Diffstat (limited to 'test/elixir/lib/couch.ex')
-rw-r--r--test/elixir/lib/couch.ex4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/elixir/lib/couch.ex b/test/elixir/lib/couch.ex
index 3aef07f01..7819299cc 100644
--- a/test/elixir/lib/couch.ex
+++ b/test/elixir/lib/couch.ex
@@ -127,8 +127,8 @@ defmodule Couch do
def set_auth_options(options) do
if Keyword.get(options, :cookie) == nil do
headers = Keyword.get(options, :headers, [])
-
- if headers[:basic_auth] != nil or headers[:authorization] != nil do
+ if headers[:basic_auth] != nil or headers[:authorization] != nil
+ or List.keymember?(headers, :"X-Auth-CouchDB-UserName", 0) do
options
else
username = System.get_env("EX_USERNAME") || "adm"