@@ -217,27 +217,27 @@ func TestListOfRoutes(t *testing.T) {
217
217
assertRoutePresent (t , list , RouteInfo {
218
218
Method : "GET" ,
219
219
Path : "/favicon.ico" ,
220
- Handler : "^(.*/vendor/)?github.com/gin-gonic/gin.handler_test1 $" ,
220
+ Handler : "^(.*/vendor/)?github.com/gin-gonic/gin.handlerTest1 $" ,
221
221
})
222
222
assertRoutePresent (t , list , RouteInfo {
223
223
Method : "GET" ,
224
224
Path : "/" ,
225
- Handler : "^(.*/vendor/)?github.com/gin-gonic/gin.handler_test1 $" ,
225
+ Handler : "^(.*/vendor/)?github.com/gin-gonic/gin.handlerTest1 $" ,
226
226
})
227
227
assertRoutePresent (t , list , RouteInfo {
228
228
Method : "GET" ,
229
229
Path : "/users/" ,
230
- Handler : "^(.*/vendor/)?github.com/gin-gonic/gin.handler_test2 $" ,
230
+ Handler : "^(.*/vendor/)?github.com/gin-gonic/gin.handlerTest2 $" ,
231
231
})
232
232
assertRoutePresent (t , list , RouteInfo {
233
233
Method : "GET" ,
234
234
Path : "/users/:id" ,
235
- Handler : "^(.*/vendor/)?github.com/gin-gonic/gin.handler_test1 $" ,
235
+ Handler : "^(.*/vendor/)?github.com/gin-gonic/gin.handlerTest1 $" ,
236
236
})
237
237
assertRoutePresent (t , list , RouteInfo {
238
238
Method : "POST" ,
239
239
Path : "/users/:id" ,
240
- Handler : "^(.*/vendor/)?github.com/gin-gonic/gin.handler_test2 $" ,
240
+ Handler : "^(.*/vendor/)?github.com/gin-gonic/gin.handlerTest2 $" ,
241
241
})
242
242
}
243
243
0 commit comments