Skip to content

Commit ce9191c

Browse files
committed
Remove Aleksanteri Institute again...
1 parent d536a15 commit ce9191c

File tree

3 files changed

+2
-15
lines changed

3 files changed

+2
-15
lines changed

src/organisation/faculties.ts

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff 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-
16891678
export 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

src/organisation/types.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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

2019
export type FacultyCode = (typeof FACULTY_MAP)[keyof typeof FACULTY_MAP]

tests/datafile.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)