Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: Replace Enum.values() with Enum.entries #106

Merged
merged 2 commits into from
Jan 29, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix: spotless issues
azrael8576 committed Jan 29, 2024
commit e8c33e995706920ec57e2b26616bf84ee3e52a88
Original file line number Diff line number Diff line change
@@ -87,35 +87,35 @@ class IntervalizeScheduleUseCaseTest(
private val testSchedules =
TeacherSchedule(
available =
listOf(
TimeSlots(
startUtc = "2023-07-31T04:30:00Z",
endUtc = "2023-07-31T09:30:00Z",
),
TimeSlots(
startUtc = "2023-07-31T12:30:00Z",
endUtc = "2023-07-31T18:30:00Z",
),
TimeSlots(
startUtc = "2023-07-31T19:30:00Z",
endUtc = "2023-07-31T20:30:00Z",
),
// More Data...
listOf(
TimeSlots(
startUtc = "2023-07-31T04:30:00Z",
endUtc = "2023-07-31T09:30:00Z",
),
TimeSlots(
startUtc = "2023-07-31T12:30:00Z",
endUtc = "2023-07-31T18:30:00Z",
),
TimeSlots(
startUtc = "2023-07-31T19:30:00Z",
endUtc = "2023-07-31T20:30:00Z",
),
// More Data...
),
booked =
listOf(
TimeSlots(
startUtc = "2023-07-31T09:30:00Z",
endUtc = "2023-07-31T10:30:00Z",
),
TimeSlots(
startUtc = "2023-07-31T11:30:00Z",
endUtc = "2023-07-31T12:30:00Z",
),
TimeSlots(
startUtc = "2023-07-31T18:30:00Z",
endUtc = "2023-07-31T19:30:00Z",
),
// More Data...
listOf(
TimeSlots(
startUtc = "2023-07-31T09:30:00Z",
endUtc = "2023-07-31T10:30:00Z",
),
TimeSlots(
startUtc = "2023-07-31T11:30:00Z",
endUtc = "2023-07-31T12:30:00Z",
),
TimeSlots(
startUtc = "2023-07-31T18:30:00Z",
endUtc = "2023-07-31T19:30:00Z",
),
// More Data...
),
)