updates and fixes

Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
This commit is contained in:
Jess Frazelle 2018-11-14 10:09:47 -05:00
parent db513b737e
commit 3b848ce686
No known key found for this signature in database
GPG key ID: 18F3685C0022BFF3
2 changed files with 2 additions and 2 deletions

View file

@ -24,7 +24,7 @@ var (
timeout time.Duration
authURL string
authURL string
username string
password string

View file

@ -78,7 +78,7 @@ func TestBothTokenAndAccessTokenWork(t *testing.T) {
ServerAddress: ts.URL,
}
authConfig.Email = "me@email.com"
r, err := New(authConfig, Opt{Insecure: true, Debug: true})
r, err := New(ts.URL, authConfig, Opt{Insecure: true, Debug: true})
if err != nil {
t.Fatalf("expected no error creating client, got %v", err)
}