summaryrefslogtreecommitdiff
path: root/client_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'client_test.go')
-rw-r--r--client_test.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/client_test.go b/client_test.go
index 77be634..583553b 100644
--- a/client_test.go
+++ b/client_test.go
@@ -175,7 +175,8 @@ func Test_connect_oauth_parameters(t *testing.T) {
serverURI := getServerURI(t)
- iss := serverURI + "/"
+ // serverURI already ends with a / due to using the util EnsureValidURL function
+ iss := serverURI
tests := []struct {
expectedErr interface{}
parameters httpw.URLParameters