1
0
Fork 0
mirror of https://codeberg.org/beerbrawl/beerbrawl.git synced 2024-09-23 09:40:52 +02:00

fix(#18): backend: fix time comparison issue

Signed-off-by: Christoph Heiss <e11907069@student.tuwien.ac.at>
This commit is contained in:
Christoph Heiss 2024-05-29 19:25:37 +02:00 committed by Moritz Kepplinger
parent 5479559b37
commit 9a59d4b54f

View file

@ -232,7 +232,7 @@ public class TournamentServiceTest extends TestUserData implements TestData {
private Tournament generateTouramentWithQualificationMatches() {
var tournament = new Tournament(
"testname", currentUtcTime().plusMinutes(1), 64L, "testdescription",
"testname", currentUtcTime().plusDays(7), 64L, "testdescription",
userRepository.findByUsername(TEST_USER));
tournamentService.create(tournament, TEST_USER);