diff --git a/modules/core/src/test/scala/de/nowchess/chess/registry/GameRegistryImplTest.scala b/modules/core/src/test/scala/de/nowchess/chess/registry/GameRegistryImplTest.scala index 49e6c64..97d02ba 100644 --- a/modules/core/src/test/scala/de/nowchess/chess/registry/GameRegistryImplTest.scala +++ b/modules/core/src/test/scala/de/nowchess/chess/registry/GameRegistryImplTest.scala @@ -9,6 +9,7 @@ import org.junit.jupiter.api.Assertions.* import scala.compiletime.uninitialized +// scalafix:off @QuarkusTest @DisplayName("GameRegistryImpl") class GameRegistryImplTest: @@ -56,3 +57,4 @@ class GameRegistryImplTest: assertNotEquals(id1, id2) assertFalse(id1.isEmpty) assertFalse(id2.isEmpty) +// scalafix:on diff --git a/modules/core/src/test/scala/de/nowchess/chess/resource/GameResourceIntegrationTest.scala b/modules/core/src/test/scala/de/nowchess/chess/resource/GameResourceIntegrationTest.scala index f7b8b6f..aca8bb2 100644 --- a/modules/core/src/test/scala/de/nowchess/chess/resource/GameResourceIntegrationTest.scala +++ b/modules/core/src/test/scala/de/nowchess/chess/resource/GameResourceIntegrationTest.scala @@ -9,6 +9,7 @@ import org.junit.jupiter.api.Assertions.* import scala.compiletime.uninitialized +// scalafix:off @QuarkusTest @DisplayName("GameResource Integration") class GameResourceIntegrationTest: @@ -150,3 +151,4 @@ class GameResourceIntegrationTest: val resp = resource.exportPgn(gameId) assertEquals(200, resp.getStatus) assertTrue(resp.getEntity.asInstanceOf[String].contains("1.")) +// scalafix:on