Skip to content

Commit

Permalink
fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
SMillerDev committed Jan 19, 2024
1 parent 8456209 commit 8c16eb6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .swiftlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
excluded: # case-sensitive paths to ignore during linting. Takes precedence over `included`
- .build/*
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ let package = Package(
name: "PentabarfKitTests",
dependencies: ["PentabarfKit"],
resources: [
.process("TestResources"),
.process("TestResources")
]
)
]
Expand Down
2 changes: 1 addition & 1 deletion Sources/PentabarfKit/PentabarfKit.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class PentabarfKit {
print("❌ Failed to fetch schedule")
return nil
}

guard let event = DataParser.parse(data) else {
print("❌ Failed to parse schedule")
return nil
Expand Down
1 change: 0 additions & 1 deletion Tests/PentabarfKitTests/PentabarfKitTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ final class PentabarfKitTests: XCTestCase {
XCTAssertEqual(event?.city, "Brussels")
}


func test2023() async throws {
let path = Bundle.module.path(forResource: "schedule_2023", ofType: "xml")
let event = try await PentabarfKit.loadConference(URL(fileURLWithPath: path!))
Expand Down

0 comments on commit 8c16eb6

Please sign in to comment.