Skip to content

Commit

Permalink
Fix merge change
Browse files Browse the repository at this point in the history
  • Loading branch information
Widcket committed Dec 1, 2021
1 parent a0badf2 commit 303f779
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Auth0/Auth0WebAuth.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion Auth0Tests/WebAuthSpec.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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") {
Expand Down

0 comments on commit 303f779

Please sign in to comment.