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 c89b57b commit 9fb6510Copy full SHA for 9fb6510
src/template/timings.rs
@@ -285,7 +285,7 @@ mod tests {
285
}],
286
};
287
288
- assert_eq!(timings.is_day_complete(&day!(1)), true);
+ assert_eq!(timings.is_day_complete(day!(1)), true);
289
}
290
291
#[test]
@@ -299,7 +299,7 @@ mod tests {
299
300
301
302
- assert_eq!(timings.is_day_complete(&day!(1)), false);
+ assert_eq!(timings.is_day_complete(day!(1)), false);
303
304
305
@@ -313,7 +313,7 @@ mod tests {
313
314
315
316
317
318
319
0 commit comments