Skip to content

Commit

Permalink
Fix test naming
Browse files Browse the repository at this point in the history
  • Loading branch information
vaeinoe committed Feb 1, 2024
1 parent 27485f5 commit 05dcdb1
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5628,7 +5628,7 @@ class KoskiDataHandlerTest
arvosanat should have length 0
}

it should "store tutkintokoulutukseen valmentava koulutus as valmis without arvosanat if deadline date is tomorrow, alku is before start of last fall's lukuvuosi and opintoviikot is 29" in {
it should "store tutkintokoulutukseen valmentava koulutus as valmis without arvosanat if deadline date is tomorrow, alku is before 1.8. last year and opintoviikot is 29" in {
val json: String = scala.io.Source
.fromFile(jsonDir + "koskidata_tutkintokoulutukseen_valmentava_aloitus_010822_valmis.json")
.mkString
Expand Down Expand Up @@ -5663,7 +5663,7 @@ class KoskiDataHandlerTest
arvosanat should have length 0
}

it should "store tutkintokoulutukseen valmentava koulutus as valmis without arvosanat if deadline date is tomorrow, alku is before start of last fall's lukuvuosi and opintoviikot is 19" in {
it should "store tutkintokoulutukseen valmentava koulutus as valmis without arvosanat if deadline date is tomorrow, alku is before 1.8. last year and opintoviikot is 19" in {
val json: String = scala.io.Source
.fromFile(
jsonDir + "koskidata_tutkintokoulutukseen_valmentava_aloitus_030822_19ov_kesken.json"
Expand Down Expand Up @@ -5700,7 +5700,7 @@ class KoskiDataHandlerTest
arvosanat should have length 0
}

it should "store tutkintokoulutukseen valmentava koulutus as valmis without arvosanat if deadline date was yesterday, alku is before start of last fall's lukuvuosi and opintoviikot is 19" in {
it should "store tutkintokoulutukseen valmentava koulutus as valmis without arvosanat if deadline date was yesterday, alku is before 1.8. last year and opintoviikot is 19" in {
val json: String = scala.io.Source
.fromFile(
jsonDir + "koskidata_tutkintokoulutukseen_valmentava_aloitus_030822_19ov_kesken.json"
Expand Down Expand Up @@ -5737,7 +5737,7 @@ class KoskiDataHandlerTest
arvosanat should have length 0
}

it should "store tutkintokoulutukseen valmentava koulutus as kesken without arvosanat if deadline date is tomorrow, alku is after start of last fall's lukuvuosi and opintoviikot is 18" in {
it should "store tutkintokoulutukseen valmentava koulutus as kesken without arvosanat if deadline date is tomorrow, alku is after 1.8. last year and opintoviikot is 18" in {
val startDate = new LocalDate(LocalDate.now().year().get() - 1, 8, 22)
val dateStr = ISODateTimeFormat.date().print(startDate)
val json: String = scala.io.Source
Expand Down Expand Up @@ -5778,7 +5778,7 @@ class KoskiDataHandlerTest
arvosanat should have length 0
}

it should "store tutkintokoulutukseen valmentava koulutus as keskeytynyt without arvosanat if deadline date was yesterday, alku is after start of last fall's lukuvuosi and opintoviikot is 18" in {
it should "store tutkintokoulutukseen valmentava koulutus as keskeytynyt without arvosanat if deadline date was yesterday, alku is after 1.8. last year and opintoviikot is 18" in {
val startDate = new LocalDate(LocalDate.now().year().get() - 1, 8, 22)
val dateStr = ISODateTimeFormat.date().print(startDate)
val json: String = scala.io.Source
Expand Down Expand Up @@ -5818,7 +5818,7 @@ class KoskiDataHandlerTest
arvosanat should have length 0
}

it should "not store tutkintokoulutukseen valmentava koulutus if deadline date was yesterday, alku is before start of last fall's lukuvuosi and opintoviikot is 18" in {
it should "not store tutkintokoulutukseen valmentava koulutus if deadline date was yesterday, alku is before 1.8. last year and opintoviikot is 18" in {
val startDate = new LocalDate(LocalDate.now().year().get() - 1, 7, 31)
val dateStr = ISODateTimeFormat.date().print(startDate)
val json: String = scala.io.Source
Expand Down

0 comments on commit 05dcdb1

Please sign in to comment.