@@ -93,7 +93,7 @@ void testRoutesMappingSymbols() throws Exception {
9393 assertTrue (containsSymbol (symbols , "@/quotes -- GET - Accept: application/stream+json" , docUri , 25 , 5 , 25 , 94 ));
9494
9595 List <? extends SymbolAddOnInformation > addons = indexer .getAdditonalInformation (docUri );
96- assertEquals (10 , addons .size ());
96+ assertEquals (8 , addons .size ());
9797
9898 WebfluxHandlerInformation handlerInfo1 = getWebfluxHandler (addons , "/hello" , "GET" ).get (0 );
9999 assertEquals ("/hello" , handlerInfo1 .getPath ());
@@ -138,7 +138,7 @@ void testNestedRoutesMappingSymbols1() throws Exception {
138138 assertTrue (containsSymbol (symbols , "@/person -- GET - Accept: application/json" , docUri , 28 , 7 , 28 , 60 ));
139139
140140 List <? extends SymbolAddOnInformation > addons = indexer .getAdditonalInformation (docUri );
141- assertEquals (8 , addons .size ());
141+ assertEquals (6 , addons .size ());
142142
143143 WebfluxHandlerInformation handlerInfo1 = getWebfluxHandler (addons , "/person/{id}" , "GET" ).get (0 );
144144 assertEquals ("/person/{id}" , handlerInfo1 .getPath ());
@@ -175,7 +175,7 @@ void testNestedRoutesMappingSymbols2() throws Exception {
175175 assertTrue (containsSymbol (symbols , "@/person -- GET,HEAD - Accept: text/plain,application/json" , docUri , 30 , 7 , 30 , 113 ));
176176
177177 List <? extends SymbolAddOnInformation > addons = indexer .getAdditonalInformation (docUri );
178- assertEquals (8 , addons .size ());
178+ assertEquals (6 , addons .size ());
179179
180180 WebfluxHandlerInformation handlerInfo1 = getWebfluxHandler (addons , "/person/{id}" , "GET" ).get (0 );
181181 assertEquals ("/person/{id}" , handlerInfo1 .getPath ());
@@ -216,7 +216,7 @@ void testNestedRoutesMappingSymbols3() throws Exception {
216216 assertTrue (containsSymbol (symbols , "@/nestedDelete -- DELETE" , docUri , 35 , 42 , 35 , 93 ));
217217
218218 List <? extends SymbolAddOnInformation > addons = indexer .getAdditonalInformation (docUri );
219- assertEquals (14 , addons .size ());
219+ assertEquals (12 , addons .size ());
220220
221221 WebfluxHandlerInformation handlerInfo1 = getWebfluxHandler (addons , "/person/sub1/sub2/{id}" , "GET" ).get (0 );
222222 assertEquals ("/person/sub1/sub2/{id}" , handlerInfo1 .getPath ());
0 commit comments