Skip to content

Commit

Permalink
Remove quantifier imports
Browse files Browse the repository at this point in the history
  • Loading branch information
lenguyenthanh committed Sep 15, 2024
1 parent 628ebbb commit 6cea46d
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 6cea46d

Please sign in to comment.