From f95ee73deedfd1740a15ca68301cb550239c22c4 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 17 Sep 2021 18:28:13 +0200 Subject: [PATCH 1/2] Update scalafmt-core to 3.0.4 --- .scalafmt.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.scalafmt.conf b/.scalafmt.conf index 67e12d8d6..cec3c456b 100644 --- a/.scalafmt.conf +++ b/.scalafmt.conf @@ -1,4 +1,4 @@ -version = 3.0.3 +version = 3.0.4 style = default From 0d584f98eb28d8a88a37026acfffd98b2d3943d2 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 17 Sep 2021 18:28:29 +0200 Subject: [PATCH 2/2] Reformat with scalafmt 3.0.4 --- .../scala/org/http4s/blaze/http/parser/ServerParserSuite.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/src/test/scala/org/http4s/blaze/http/parser/ServerParserSuite.scala b/http/src/test/scala/org/http4s/blaze/http/parser/ServerParserSuite.scala index 05da6b06e..3a6c378b5 100644 --- a/http/src/test/scala/org/http4s/blaze/http/parser/ServerParserSuite.scala +++ b/http/src/test/scala/org/http4s/blaze/http/parser/ServerParserSuite.scala @@ -69,7 +69,7 @@ class ServerParserSuite extends BlazeTestSuite { } } - private def toChunk(str: String): String = s"${Integer.toHexString(str.length)}\r\n${str}\r\n" + private def toChunk(str: String): String = s"${Integer.toHexString(str.length)}\r\n$str\r\n" private val l_headers = ("From", "someuser@jmarshall.com ") :: ("HOST", "www.foo.com") ::