Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update scalafmt-core to 3.7.5 #197

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
# Scala Steward: Reformat with scalafmt 3.5.8
6e7c1947996b3e3dfb4c194c4eea4c5847001b87

# Scala Steward: Reformat with scalafmt 3.7.5
6134e7c781c0d532980c1142f69ce55b044e372c
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 3.5.9
version = 3.7.5
runner.dialect = Scala213Source3

assumeStandardLibraryStripMargin = false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,10 @@ object WarpClient {
)
}

def closePool()(implicit actorSystem: ActorSystem) = {
def closePool(
)(implicit
actorSystem: ActorSystem
) = {
Http().shutdownAllConnectionPools
}
}
Expand Down
11 changes: 9 additions & 2 deletions src/test/scala/Warp10ClientSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,11 @@ class Warp10ClientSpec extends Specification with Warp10TestContainer {
implicit val warpConfiguration: WarpConfiguration = WarpConfiguration(warp10_url)

// PUSH TESTS
private def pushContext()(implicit actorMaterializer: Materializer, executionContext: ExecutionContext) = {
private def pushContext(
)(implicit
actorMaterializer: Materializer,
executionContext: ExecutionContext
) = {
WarpClientContext(
poolClientFlow = {
Flow[(HttpRequest, UUID)].mapAsync(1) {
Expand Down Expand Up @@ -99,7 +103,10 @@ class Warp10ClientSpec extends Specification with Warp10TestContainer {
def p4 = Await.result(fullDataFieldSend_f, Period(1000, MILLISECONDS)) must beAnInstanceOf[Right[_, _]]

// FETCH TESTS
private def fetchContext()(implicit actorMaterializer: Materializer) = {
private def fetchContext(
)(implicit
actorMaterializer: Materializer
) = {
WarpClientContext(
poolClientFlow = Flow[(HttpRequest, UUID)].map {
case (httpRequest, requestKey) => {
Expand Down