Skip to content

Commit 056b0c1

Browse files
committed
Remove redundant labels in tests
1 parent fc9f2b9 commit 056b0c1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/run-pass/deprecated.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
#![plugin(clippy)]
33

44
#[warn(str_to_string)]
5-
//~^WARNING: warning: lint str_to_string has been removed: using `str::to_string`
5+
//~^WARNING: lint str_to_string has been removed: using `str::to_string`
66
#[warn(string_to_string)]
7-
//~^WARNING: warning: lint string_to_string has been removed: using `string::to_string`
7+
//~^WARNING: lint string_to_string has been removed: using `string::to_string`
88
#[warn(unstable_as_slice)]
9-
//~^WARNING: warning: lint unstable_as_slice has been removed: `Vec::as_slice` has been stabilized
9+
//~^WARNING: lint unstable_as_slice has been removed: `Vec::as_slice` has been stabilized
1010
#[warn(unstable_as_mut_slice)]
11-
//~^WARNING: warning: lint unstable_as_mut_slice has been removed: `Vec::as_mut_slice` has been stabilized
11+
//~^WARNING: lint unstable_as_mut_slice has been removed: `Vec::as_mut_slice` has been stabilized
1212
fn main() {}

0 commit comments

Comments
 (0)