From 382bbcb05aee354ea1845f34b7c1988fc47a0844 Mon Sep 17 00:00:00 2001 From: Devon Stewart Date: Wed, 25 May 2022 22:36:11 -0700 Subject: [PATCH] Fixing test --- .../scala-akka-http/src/test/scala/core/issues/Issue122.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/scala-akka-http/src/test/scala/core/issues/Issue122.scala b/modules/scala-akka-http/src/test/scala/core/issues/Issue122.scala index ddd0ca4eec..71d4929389 100644 --- a/modules/scala-akka-http/src/test/scala/core/issues/Issue122.scala +++ b/modules/scala-akka-http/src/test/scala/core/issues/Issue122.scala @@ -70,7 +70,7 @@ class Issue122 extends AnyFunSuite with Matchers with SwaggerSpecRunner { Left(Left(t)) })) } - def getUser(id: String, optionalIterable: Option[Iterable[String]] = None, requiredIterable: Iterable[String], headers: List[HttpHeader] = Nil): EitherT[Future, Either[Throwable, HttpResponse], GetUserResponse] = { + def getUser(id: String, optionalIterable: Option[Vector[String]] = None, requiredIterable: Vector[String], headers: List[HttpHeader] = Nil): EitherT[Future, Either[Throwable, HttpResponse], GetUserResponse] = { val allHeaders = headers ++ scala.collection.immutable.Seq[Option[HttpHeader]]().flatten makeRequest(HttpMethods.GET, host + basePath + "/user/" + Formatter.addPath(id), allHeaders, FormData(List(optionalIterable.toList.flatMap { x => x.toList.map(x => ("optionalIterable", Formatter.show(x)))