Fix failing tests in spring-test after recent changes

See gh-33639
This commit is contained in:
rstoyanchev 2024-10-07 21:09:10 +01:00
parent 2389748e25
commit b13f86cf46
1 changed files with 4 additions and 3 deletions

View File

@ -142,10 +142,11 @@ abstract class RfcUriParser {
case ';':
case '?':
case '#':
case '.':
parser.index(--i);
parser.advanceTo(PATH);
break;
default:
if (c == '.') {
parser.index(--i);
}
parser.advanceTo(PATH);
}
}