Skip to content

Commit

Permalink
Remove redundant std::string namespace qualification.
Browse files Browse the repository at this point in the history
  • Loading branch information
willbush committed Oct 31, 2024
1 parent b57e201 commit 7f07169
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nix_file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ mod tests {
let expected = BTreeMap::from_iter(cases.map(|(line, column, result)| {
(
Position { line, column },
result.map(std::string::ToString::to_string),
result.map(ToString::to_string),
)
}));
let actual = BTreeMap::from_iter(cases.map(|(line, column, _)| {
Expand Down

0 comments on commit 7f07169

Please sign in to comment.