From 0aedb2b48dce26a7cd758dfd5cb51c801af19abb Mon Sep 17 00:00:00 2001 From: Russ White <356303+russwyte@users.noreply.github.com> Date: Sat, 25 May 2024 15:19:38 -0500 Subject: [PATCH] add attempt to handle Currency - part 3 --- .../src/test/scala/zio/http/endpoint/cli/CommandGen.scala | 1 + 1 file changed, 1 insertion(+) diff --git a/zio-http-cli/src/test/scala/zio/http/endpoint/cli/CommandGen.scala b/zio-http-cli/src/test/scala/zio/http/endpoint/cli/CommandGen.scala index ec5b4f7bfb..a83ecfaa9d 100644 --- a/zio-http-cli/src/test/scala/zio/http/endpoint/cli/CommandGen.scala +++ b/zio-http-cli/src/test/scala/zio/http/endpoint/cli/CommandGen.scala @@ -155,6 +155,7 @@ object CommandGen { case StandardType.LocalDateTimeType => "date-time" case StandardType.MonthType => "text" case StandardType.YearType => "integer" + case StandardType.CurrencyType => "currency" } case _ => "non primitive" }