Skip to content

Commit

Permalink
Fix CI 3
Browse files Browse the repository at this point in the history
  • Loading branch information
Urhengulas committed Jan 18, 2024
1 parent 28c7fa8 commit 255cde7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/hir-ty/src/mir/eval/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ fn check_pass_and_stdio(ra_fixture: &str, expected_stdout: &str, expected_stderr
let mut err = String::new();
let line_index = |size: TextSize| {
let mut size = u32::from(size) as usize;
let mut lines = ra_fixture.lines().enumerate();
let lines = ra_fixture.lines().enumerate();
for (i, l) in lines {
if let Some(x) = size.checked_sub(l.len()) {
size = x;
Expand Down

0 comments on commit 255cde7

Please sign in to comment.