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.8.6 #1025

Closed
Closed
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.7.17
ecc0a442977bb5dbd00a36ddfce812814ab4ac21

# Scala Steward: Reformat with scalafmt 3.8.6
407c826bb9d1b2023743f5db732e3e6a4c2675c4
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "3.8.3"
version = "3.8.6"
maxColumn = 120
align.preset = most
continuationIndent.defnSite = 2
Expand Down
14 changes: 7 additions & 7 deletions modules/redis-it/src/test/scala/zio/redis/KeysSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -216,13 +216,13 @@ trait KeysSpec extends IntegrationSpec {
},
test("migrate key to another redis server (move and no replace, should fail when key exists)") {
for {
redis <- ZIO.service[Redis]
key <- uuid
value <- uuid
_ <- redis.set(key, value)
_ <- ZIO
.serviceWithZIO[Redis](_.set(key, value))
.provideLayer(secondExecutor) // also add to second Redis
redis <- ZIO.service[Redis]
key <- uuid
value <- uuid
_ <- redis.set(key, value)
_ <- ZIO
.serviceWithZIO[Redis](_.set(key, value))
.provideLayer(secondExecutor) // also add to second Redis
response <- redis
.migrate(
IntegrationSpec.SingleNode1,
Expand Down
Loading