Skip to content

Commit

Permalink
Add second super:: in non-Windows alternative_locations test
Browse files Browse the repository at this point in the history
This was needed on both Windows and non-Windows systems ever since
I moved the tests from `tests` to `tests::loc`, but I forgot to
update it for the non-Windows `alternative_locations` test.
  • Loading branch information
EliahKagan committed Jul 14, 2024
1 parent 15235bf commit 8ae54e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gix-path/src/env/git.rs
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ mod tests {
mod loc {
#[test]
fn alternative_locations() {
assert!(super::ALTERNATIVE_LOCATIONS.is_empty());
assert!(super::super::ALTERNATIVE_LOCATIONS.is_empty());
}
}
}

0 comments on commit 8ae54e8

Please sign in to comment.