Skip to content

Commit

Permalink
Parameterize URI parsing tests
Browse files Browse the repository at this point in the history
Closes gh-33639
  • Loading branch information
rstoyanchev committed Oct 7, 2024
1 parent d6fcad9 commit 2389748
Show file tree
Hide file tree
Showing 3 changed files with 231 additions and 176 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -518,9 +518,9 @@ private UriComponentsBuilder whatWgUrlRecord(WhatWgUrlParser.UrlRecord record) {
}
path(record.path().toString());
query(record.query());
if (StringUtils.hasText(record.fragment())) {
fragment(record.fragment());
}
}
if (StringUtils.hasText(record.fragment())) {
fragment(record.fragment());
}
return this;
}
Expand Down
Loading

0 comments on commit 2389748

Please sign in to comment.