File tree Expand file tree Collapse file tree 3 files changed +2
-15
lines changed
Expand file tree Collapse file tree 3 files changed +2
-15
lines changed Original file line number Diff line number Diff line change @@ -1675,17 +1675,6 @@ const kielikeskus: IndependentInstitute = {
16751675 independentInstitute : true ,
16761676} as const
16771677
1678- const aleksanteriInstituutti : IndependentInstitute = {
1679- code : 'H401' ,
1680- name : {
1681- fi : 'Aleksanteri-instituutti' ,
1682- en : 'Aleksanteri Institute' ,
1683- sv : 'Alexanderinstitutet' ,
1684- } ,
1685- programmes : [ ] ,
1686- independentInstitute : true ,
1687- } as const
1688-
16891678export const FACULTIES : Readonly < Faculty [ ] > = [
16901679 humanistinen ,
16911680 teologinen ,
@@ -1700,5 +1689,4 @@ export const FACULTIES: Readonly<Faculty[]> = [
17001689 maatalousMetsatieteellinen ,
17011690 elainlaaketieteellinen ,
17021691 kielikeskus ,
1703- aleksanteriInstituutti
17041692] as const
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ export const FACULTY_MAP = {
1414 'maatalous-metsätieteellinen' : 'H80' ,
1515 eläinlääketieteellinen : 'H90' ,
1616 kielikeskus : 'H906' ,
17- aleksanteriInstituutti : 'H401' ,
1817} as const
1918
2019export type FacultyCode = ( typeof FACULTY_MAP ) [ keyof typeof FACULTY_MAP ]
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ describe('Organisation data', () => {
66 it ( 'Has faculties in a valid format' , ( ) => {
77 const faculties = data
88
9- // There should be 14 faculties
10- expect ( faculties . length ) . toBe ( 14 )
9+ // There should be 13 faculties
10+ expect ( faculties . length ) . toBe ( 13 )
1111
1212 // Each faculty code should be unique
1313 const facultyCodes = faculties . map ( ( faculty ) => faculty . code )
You can’t perform that action at this time.
0 commit comments