Skip to content

Commit

Permalink
Added the missing floor attribute to 2 test files to fix build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
JBergVincit committed Jul 11, 2024
1 parent 89cca14 commit 3b98bc6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ const fakeRooms: Room[] = [
id: '123',
name: 'Amor',
building: 'Hermia 5',
floor: '1',
capacity: 15,
features: ['TV', 'Whiteboard'],
nextCalendarEvent: DateTime.now().plus({ minutes: 121 }).toUTC().toISO()
Expand All @@ -32,6 +33,7 @@ const fakeRooms: Room[] = [
id: '124',
name: 'Amor',
building: 'Hermia 5',
floor: '1',
capacity: 15,
features: ['TV', 'Whiteboard'],
nextCalendarEvent: DateTime.now().plus({ minutes: 61 }).toUTC().toISO()
Expand All @@ -41,6 +43,7 @@ const fakeRooms: Room[] = [
id: '125',
name: 'Amor',
building: 'Hermia 5',
floor: '1',
capacity: 15,
features: ['TV', 'Whiteboard'],
nextCalendarEvent: DateTime.now().plus({ minutes: 31 }).toUTC().toISO()
Expand All @@ -50,6 +53,7 @@ const fakeRooms: Room[] = [
id: '126',
name: 'Amor',
building: 'Hermia 5',
floor: '1',
capacity: 15,
features: ['TV', 'Whiteboard'],
nextCalendarEvent: DateTime.now().plus({ minutes: 16 }).toUTC().toISO()
Expand All @@ -59,6 +63,7 @@ const fakeRooms: Room[] = [
id: '127',
name: 'Amor',
building: 'Hermia 5',
floor: '1',
capacity: 15,
features: ['TV', 'Whiteboard'],
nextCalendarEvent: DateTime.now().plus({ minutes: 1 }).toUTC().toISO()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ const fakeRoom: Room = {
id: '123',
name: 'Amor',
building: 'Hermia 5',
floor: '1',
capacity: 15,
features: ['TV', 'Whiteboard'],
nextCalendarEvent: DateTime.now().plus({ minutes: 30 }).toUTC().toISO(),
Expand Down

0 comments on commit 3b98bc6

Please sign in to comment.