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 f3f5a9494a..e5ed9ee28f 100644 --- a/zio-http/jvm/src/test/scala/zio/http/RoutePatternSpec.scala +++ b/zio-http/jvm/src/test/scala/zio/http/RoutePatternSpec.scala @@ -402,9 +402,8 @@ object RoutePatternSpec extends ZIOHttpSpec { def anyOfTests = suite("anyOf")( test("anyOf with multiple patterns") { - val routePattern = Method.GET / anyOf("", "index.html", "index.htm") + val routePattern = Method.GET / anyOf("", "index.html", "index.htm") assertTrue( - routePattern.matches(Method.GET, Path("")), routePattern.matches(Method.GET, Path("index.html")), routePattern.matches(Method.GET, Path("index.htm")),