Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
SalamaGofore committed Apr 17, 2024
1 parent 1774501 commit 76bd2aa
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -195,16 +195,11 @@ public void testSijoitteluToisensaPoisSulkevatRyhmat() {
Assertions.assertThrows(IllegalStateException.class, () -> SijoitteluAlgorithmUtil.sijoittele(hakukohteet, Collections.emptyList(), Collections.emptyMap()));
}

//TODO: Figure why this test fails...
@Disabled
@Test
@Sql("hakijaryhma_varasijasaannot_paattyneet.sql")
public void testSijoitteluVarasijaSaannotPaattyneet() {

HakuDTO haku = valintatietoService.haeValintatiedot("1.2.246.562.29.173465377510");
haku.getHakukohteet().get(0).getValinnanvaihe().get(0).getValintatapajonot().stream()
.filter(v -> v.getNimi().equals("valintatapajono1")).forEach(v ->
v.setVarasijojaTaytetaanAsti(Date.from(LocalDate.of(2016, Month.APRIL, 23).atStartOfDay(ZoneId.systemDefault()).toInstant())));
List<Hakukohde> hakukohteet = haku.getHakukohteet().parallelStream().map(DomainConverter::convertToHakukohde).collect(Collectors.toList());

final SijoitteluajoWrapper sijoitteluAjo = createSijoitteluajoWrapper(hakukohteet);
Expand Down

0 comments on commit 76bd2aa

Please sign in to comment.