Skip to content

Commit

Permalink
Don't use _ with numbers for 2.12
Browse files Browse the repository at this point in the history
  • Loading branch information
calvinlfer committed Jan 8, 2025
1 parent 0967010 commit c535dca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zio-sqs/src/test/scala/zio/sqs/ZioSqsSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ object ZioSqsSpec extends ZIOSpecDefault {
stopWhenQueueEmpty = true,
waitTimeSeconds = Some(1),
visibilityTimeout = Some(2),
maxNumberOfMessages = 10_000
maxNumberOfMessages = 10000
)

val program =
Expand Down Expand Up @@ -91,7 +91,7 @@ object ZioSqsSpec extends ZIOSpecDefault {
stopWhenQueueEmpty = true,
waitTimeSeconds = Some(1),
visibilityTimeout = Some(2),
maxNumberOfMessages = 10_000
maxNumberOfMessages = 10000
)

val program = for {
Expand Down

0 comments on commit c535dca

Please sign in to comment.