From 6cea46d35cf7c26ba72a59daceacfb5612f1571c Mon Sep 17 00:00:00 2001 From: Thanh Le Date: Sun, 15 Sep 2024 18:49:47 +0200 Subject: [PATCH] Remove quantifier imports --- app/src/test/scala/ExecutorTest.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/test/scala/ExecutorTest.scala b/app/src/test/scala/ExecutorTest.scala index a143b1e..3cc0cf2 100644 --- a/app/src/test/scala/ExecutorTest.scala +++ b/app/src/test/scala/ExecutorTest.scala @@ -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 @@ -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