Skip to content

Commit

Permalink
Handle boxo changes to redirect URL (#225)
Browse files Browse the repository at this point in the history
  • Loading branch information
gammazero authored Jan 3, 2025
1 parent b38facb commit 4bb55f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/path_gateway_unixfs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func TestUnixFSDirectoryListing(t *testing.T) {
Response: Expect().
Status(301).
Headers(
Header("Location", `/ipfs/{{cid}}/%c4%85/%c4%99/`, root.Cid()),
Header("Location", `/ipfs/{{cid}}/%C4%85/%C4%99/`, root.Cid()),
),
},
{
Expand Down
2 changes: 1 addition & 1 deletion tests/subdomain_gateway_ipfs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func TestUnixFSDirectoryListingOnSubdomainGateway(t *testing.T) {
Response: Expect().
Status(301).
Headers(
Header("Location").Equals(`/%c4%85/%c4%99/`),
Header("Location").Equals(`/%C4%85/%C4%99/`),
),
},
{
Expand Down

0 comments on commit 4bb55f3

Please sign in to comment.