Skip to content

Commit

Permalink
Merge pull request #347 from lichess-org/clean-import
Browse files Browse the repository at this point in the history
Remove quantifier imports
  • Loading branch information
lenguyenthanh authored Sep 15, 2024
2 parents 628ebbb + 6cea46d commit e0e8bd7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/test/scala/ExecutorTest.scala
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ object ExecutorTest extends SimpleIOSuite:
acquired <- executor.acquire(key)
_ <- executor.move(acquired.get.id, key, validMove.some)
response <- ref.get.map(_.head)
yield expect.same(response, Lila.Response(request.id, request.moves, chess.format.Uci.Move("e2e4").get))
yield expect.same(response, Lila.Response(request.id, request.moves, Uci.Move("e2e4").get))

test("post move after timeout should not send move"):
for
Expand All @@ -91,7 +91,7 @@ object ExecutorTest extends SimpleIOSuite:
acquired <- executor.acquire(key)
_ <- executor.move(acquired.get.id, key, validMove.some)
response <- ref.get.map(_.head)
yield expect.same(response, Lila.Response(request.id, request.moves, chess.format.Uci.Move("e2e4").get))
yield expect.same(response, Lila.Response(request.id, request.moves, Uci.Move("e2e4").get))

test("post null move should remove the task"):
for
Expand Down

0 comments on commit e0e8bd7

Please sign in to comment.