Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion JWTDecodeTests/JWTDecodeSpec.swift
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ class JWTDecodeSpec: XCTestCase {
}
}

extension JWTDecodeError: Equatable {}
extension JWTDecodeError: @retroactive Equatable {}

public func ==(lhs: JWTDecodeError, rhs: JWTDecodeError) -> Bool {
return lhs.localizedDescription == rhs.localizedDescription && lhs.errorDescription == rhs.errorDescription
Expand Down
3 changes: 2 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,6 @@ let package = Package(
.product(name: "Nimble", package: "Nimble"),
],
path: "JWTDecodeTests",
exclude: ["Info.plist"])
exclude: ["Info.plist"],
swiftSettings: [.swiftLanguageMode(.v5)])
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice!

])
Loading