Skip to content

Commit

Permalink
fix #15: fix equatable protocol in httpstubrequest
Browse files Browse the repository at this point in the history
  • Loading branch information
malcommac committed Feb 18, 2022
1 parent a968d0e commit a7265c2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class HTTPStubRequest: Equatable {
public init() {}

public static func == (lhs: HTTPStubRequest, rhs: HTTPStubRequest) -> Bool {
false
lhs === rhs
}

// MARK: - Private Functions
Expand Down

0 comments on commit a7265c2

Please sign in to comment.