From 49973bdf23f5a78346c896ab985b72b6afbd3a4f Mon Sep 17 00:00:00 2001 From: Quentin Rendu Date: Tue, 31 Oct 2023 10:25:02 +0100 Subject: [PATCH] Modify opengotha weights filename in test 9 --- api-webapp/src/test/kotlin/PairingTests.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-webapp/src/test/kotlin/PairingTests.kt b/api-webapp/src/test/kotlin/PairingTests.kt index f07f1cd..6cd9286 100644 --- a/api-webapp/src/test/kotlin/PairingTests.kt +++ b/api-webapp/src/test/kotlin/PairingTests.kt @@ -257,7 +257,7 @@ class PairingTests: TestBase() { games = TestAPI.post("/api/tour/$id/pair/$round", Json.Array("all")).asArray() logger.info("games for round $round: {}", games.toString()) - assertTrue(compare_weights("weights.txt", "opengotha/notsosimpleswiss_weights_nobye_R$round.txt"), "Not matching opengotha weights for round $round") + assertTrue(compare_weights("weights.txt", "opengotha/notsosimpleswiss_weights_R$round.txt"), "Not matching opengotha weights for round $round") assertTrue(compare_games(games, Json.parse(pairings[round - 1])!!.asArray()),"pairings for round $round differ") logger.info("Pairings for round $round match OpenGotha")