We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce95c49 commit 6a21875Copy full SHA for 6a21875
src/bin/pr-metadata-validator.rs
@@ -163,7 +163,8 @@ fn make_fake_course_schedule(module_name: String) -> CourseSchedule {
163
sprints.insert(
164
module_name,
165
std::iter::repeat_with(|| btreemap![ARBITRARY_REGION => fixed_date])
166
- .take(3)
+ // 4 is the max number of sprints a module (currently) contains.
167
+ .take(4)
168
.collect(),
169
);
170
CourseSchedule {
0 commit comments