Skip to content
Open
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
Expand Up @@ -15,3 +15,6 @@ b73b3c3f8fcaaa70595cd267f7242b0a0c345039

# Scala Steward: Reformat with scalafmt 3.9.10
f74af0b3f4b0c8385127bd16e3443542db820421

# Scala Steward: Reformat with scalafmt 3.10.2
6db4d4de6ae8018e419fabac8ddce39f8aadcf2e
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 3.10.1
version = 3.10.2
maxColumn = 140
runner.dialect = scala3

Expand Down
2 changes: 1 addition & 1 deletion core/src/test/scala/ox/channels/ActorTest.scala
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class ActorTest extends AnyFlatSpec with Matchers:
val outer = 1000
val inner = 1000

val forks = for (i <- 1 to outer) yield fork {
val forks = for i <- 1 to outer yield fork {
for j <- 1 to inner do ref.ask(_.f(1))
}
forks.foreach(_.join())
Expand Down
2 changes: 1 addition & 1 deletion core/src/test/scala/ox/channels/ChannelTest.scala
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ class ChannelTest extends AnyFlatSpec with Matchers with Eventually:
c.send(3)

// when
val result = for (_ <- 1 to 4) yield select(c.receiveClause, Default(5)).value
val result = for _ <- 1 to 4 yield select(c.receiveClause, Default(5)).value

// then
result.toList shouldBe List(1, 2, 3, 5)
Expand Down