Skip to content

Commit 85b381d

Browse files
committed
Run uibless
1 parent 2e32e98 commit 85b381d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/ui/strlen_on_c_strings.fixed

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ fn adjusted(box_cstring: Box<CString>, box_cstr: Box<CStr>, arc_cstring: std::sy
4646
}
4747

4848
#[clippy::msrv = "1.78"]
49-
fn count_bytes_not_available() {
49+
fn msrv_1_78() {
5050
let cstr = CStr::from_bytes_with_nul(b"foo\0").expect("CStr::from_bytes_with_nul failed");
5151
let _ = cstr.to_bytes().len();
5252
//~^ strlen_on_c_strings
@@ -57,7 +57,7 @@ fn count_bytes_not_available() {
5757
}
5858

5959
#[clippy::msrv = "1.79"]
60-
fn count_bytes_available() {
60+
fn msrv_1_79() {
6161
let cstr = CStr::from_bytes_with_nul(b"foo\0").expect("CStr::from_bytes_with_nul failed");
6262
let _ = cstr.count_bytes();
6363
//~^ strlen_on_c_strings

0 commit comments

Comments
 (0)