Skip to content

Commit

Permalink
Fix HTTPS
Browse files Browse the repository at this point in the history
  • Loading branch information
pambrozy committed Jan 9, 2023
1 parent 5607b82 commit ca307ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Sources/PekaAPI/PekaAPI.swift
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class PekaAPI {
/// - url: The URL of the endpoint.
/// - session: The URLSession to use to make the calls to the endpoint.
public init(
url: URL = URL(string: "http://www.peka.poznan.pl/vm/method.vm")!,
url: URL = URL(string: "https://www.peka.poznan.pl/vm/method.vm")!,
session: URLSession = .shared
) {
self.url = url
Expand Down
2 changes: 1 addition & 1 deletion Tests/PekaAPITests/PekaAPITests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ final class PekaAPITests: XCTestCase {
private enum Constants {
static let nonExisting = "Non-existing"
static let stopPointName = "Rondo Kaponiera"
static let streetName = "Fredry"
static let streetName = "Grunwaldzka"
static let lineName = "3"
static let bollardSymbol = "RKAP71"
}
Expand Down

0 comments on commit ca307ab

Please sign in to comment.