Skip to content

Commit 255cde7

Browse files
committed
Fix CI 3
1 parent 28c7fa8 commit 255cde7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/hir-ty/src/mir/eval/tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ fn check_pass_and_stdio(ra_fixture: &str, expected_stdout: &str, expected_stderr
4949
let mut err = String::new();
5050
let line_index = |size: TextSize| {
5151
let mut size = u32::from(size) as usize;
52-
let mut lines = ra_fixture.lines().enumerate();
52+
let lines = ra_fixture.lines().enumerate();
5353
for (i, l) in lines {
5454
if let Some(x) = size.checked_sub(l.len()) {
5555
size = x;

0 commit comments

Comments
 (0)