From 01c7cd869b6b0ce40d926e391367650f32855c09 Mon Sep 17 00:00:00 2001 From: M-Vamshi <21211a05f1@bvrit.ac.in> Date: Sun, 16 Jun 2024 21:44:43 +0530 Subject: [PATCH] fix changes --- zio-http/jvm/src/test/scala/zio/http/RoutePatternSpec.scala | 6 ------ 1 file changed, 6 deletions(-) diff --git a/zio-http/jvm/src/test/scala/zio/http/RoutePatternSpec.scala b/zio-http/jvm/src/test/scala/zio/http/RoutePatternSpec.scala index 284f118c44..3de8dc5427 100644 --- a/zio-http/jvm/src/test/scala/zio/http/RoutePatternSpec.scala +++ b/zio-http/jvm/src/test/scala/zio/http/RoutePatternSpec.scala @@ -413,12 +413,6 @@ object RoutePatternSpec extends ZIOHttpSpec { println("Testing routePattern with index.htm path:") println(routePattern.matches(Method.GET, Path("index.htm"))) - println("Testing routePattern with index path:") - println(routePattern.matches(Method.GET, Path("index"))) - - println("Testing routePattern with other path:") - println(routePattern.matches(Method.GET, Path("other"))) - assertTrue(routePattern.matches(Method.GET, Path(""))) assertTrue(routePattern.matches(Method.GET, Path("index.html"))) assertTrue(routePattern.matches(Method.GET, Path("index.htm")))