-
Notifications
You must be signed in to change notification settings - Fork 269
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
Fix new nightly warnings #4496
Fix new nightly warnings #4496
Conversation
6057b19
to
edfdbc2
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks. Looks good.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #4496 +/- ##
==========================================
+ Coverage 85.35% 85.36% +0.01%
==========================================
Files 284 284
Lines 31887 31885 -2
==========================================
+ Hits 27218 27220 +2
+ Misses 4669 4665 -4 ☔ View full report in Codecov by Sentry. |
@@ -803,7 +803,7 @@ mod tests { | |||
assert_items_eq!(linked_chunk, ['a', 'b', 'c'] ['d']); | |||
|
|||
// Empty updates first. | |||
let _ = linked_chunk.updates().take(); | |||
let _ = linked_chunk.updates().unwrap().take(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, that was indeed the expected behavior.
Signed-off-by: Jonas Platte jplatte+matrix@posteo.de