Skip to content

Commit

Permalink
Fix failing tests in spring-test after recent changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rstoyanchev committed Oct 7, 2024
1 parent 2389748 commit b13f86c
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -142,10 +142,11 @@ public void handleNext(InternalParser parser, char c, int i) {
case ';':
case '?':
case '#':
case '.':
parser.index(--i);
parser.advanceTo(PATH);
break;
default:
if (c == '.') {
parser.index(--i);
}
parser.advanceTo(PATH);
}
}
Expand Down

0 comments on commit b13f86c

Please sign in to comment.