Skip to content

Commit 0687c59

Browse files
committed
Remove unnecessarily allowed lints
1 parent 936537d commit 0687c59

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

futures-util/src/stream/stream/split.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ impl<S: Stream> Stream for SplitStream<S> {
3535
}
3636
}
3737

38-
#[allow(bad_style)]
38+
#[allow(non_snake_case)]
3939
fn SplitSink<S: Sink<Item>, Item>(lock: BiLock<S>) -> SplitSink<S, Item> {
4040
SplitSink { lock, slot: None }
4141
}

futures/tests_disabled/stream.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,6 @@ fn forward() {
318318
}
319319

320320
#[test]
321-
#[allow(deprecated)]
322321
fn concat() {
323322
let a = iter_ok::<_, ()>(vec![vec![1, 2, 3], vec![4, 5, 6], vec![7, 8, 9]]);
324323
assert_done(move || a.concat(), Ok(vec![1, 2, 3, 4, 5, 6, 7, 8, 9]));

0 commit comments

Comments
 (0)