From 303f7791b1336f7c714b5559dd8bf64ace25c93e Mon Sep 17 00:00:00 2001 From: Rita Zerrizuela Date: Tue, 30 Nov 2021 20:42:06 -0300 Subject: [PATCH] Fix merge change --- Auth0/Auth0WebAuth.swift | 2 +- Auth0Tests/WebAuthSpec.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Auth0/Auth0WebAuth.swift b/Auth0/Auth0WebAuth.swift index b83f3517..d40a6c65 100644 --- a/Auth0/Auth0WebAuth.swift +++ b/Auth0/Auth0WebAuth.swift @@ -48,7 +48,7 @@ final class Auth0WebAuth: WebAuth { self.session = session self.storage = storage self.telemetry = telemetry - self.issuer = "\(url.absoluteString)/" + self.issuer = url.absoluteString } func connection(_ connection: String) -> Self { diff --git a/Auth0Tests/WebAuthSpec.swift b/Auth0Tests/WebAuthSpec.swift index 4498fcd0..62ae1560 100644 --- a/Auth0Tests/WebAuthSpec.swift +++ b/Auth0Tests/WebAuthSpec.swift @@ -344,7 +344,7 @@ class WebAuthSpec: QuickSpec { context("issuer") { it("should use the default issuer value") { - expect(newWebAuth().issuer).to(equal("\(DomainURL.absoluteString)/")) + expect(newWebAuth().issuer).to(equal(DomainURL.absoluteString)) } it("should use a custom issuer value") {