Skip to content
This repository has been archived by the owner on Jan 5, 2024. It is now read-only.

Commit

Permalink
Merge pull request #33 from antoniostrijdom/notfound-failures
Browse files Browse the repository at this point in the history
Notfound failures
  • Loading branch information
albertodebortoli committed Jun 2, 2021
2 parents d1dd745 + 27971bd commit 6122164
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ PODS:
- GRMustache.swift (4.0.1)
- JustLog (3.1.3):
- SwiftyBeaver (~> 1.9.1)
- Shock (6.0.0):
- Shock (6.0.1):
- GRMustache.swift (~> 4.0.1)
- SwiftNIOHTTP1 (~> 2.22.1)
- SwiftNIO (2.22.1):
Expand Down Expand Up @@ -54,7 +54,7 @@ SPEC CHECKSUMS:
CNIOSHA1: fd4d38fb42778ed971a75d87530f842106d4b4f4
GRMustache.swift: a6436504284b22b4b05daf5f46f77bd3fe00a9a2
JustLog: c1b12fe8fc6a7c22cc31dd874fe7776eaa7089d2
Shock: e8f5c810e5ca8c19e1903a42b2a129a6c0e7b07e
Shock: 31b6786d7716dba5c6dff68c9e3949ab96aebf30
SwiftNIO: 763188229de166e046cc8975383cca388832e992
SwiftNIOConcurrencyHelpers: 34d2e9d4d2b7886fa765086e845e6b19417be927
SwiftNIOHTTP1: c0a9ce48ba256f349af4f09648a0e0939b11a65c
Expand Down
2 changes: 1 addition & 1 deletion Shock.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'Shock'
s.version = '6.0.0'
s.version = '6.0.1'
s.summary = 'A HTTP mocking framework written in Swift.'

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion Shock/Classes/MockHTTPRoute.swift
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ extension String {
if otherPart.hasPrefix(":") {
continue
}
match = part == otherPart
match = part.lowercased() == otherPart.lowercased()
if !match {
break
}
Expand Down

0 comments on commit 6122164

Please sign in to comment.