Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
AZWN committed Dec 4, 2023
1 parent d00b2e3 commit 6e0ffd0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scopegraphs-lib/src/resolve/topdown.rs
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ mod tests {
let env = resolve(
&scope_graph,
&mut Machine::new(),
&|_x| true,
&|_| true,
&|_, _| false,
&|_, _| false,
s0,
Expand All @@ -242,7 +242,7 @@ mod tests {
let env_vec = env.into_iter().collect::<Vec<_>>();
assert_eq!(1, env_vec.len());

let path: &ResolvedPath<'_, Lbl, usize> = &env_vec[0];
let path: &ResolvedPath<Lbl, usize> = &env_vec[0];
assert_eq!(42, *path.data())
}
}

0 comments on commit 6e0ffd0

Please sign in to comment.