Skip to content

Commit

Permalink
Reformat with scalafmt 3.8.4
Browse files Browse the repository at this point in the history
Executed command: scalafmt --non-interactive
  • Loading branch information
scala-steward committed Jan 13, 2025
1 parent 3c4a56d commit 7ca7b63
Showing 1 changed file with 7 additions and 7 deletions.
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

0 comments on commit 7ca7b63

Please sign in to comment.