From 7f07169be7f29243f398d18ed950b60e71663f61 Mon Sep 17 00:00:00 2001 From: Will Bush Date: Wed, 30 Oct 2024 21:27:47 -0500 Subject: [PATCH] Remove redundant std::string namespace qualification. --- src/nix_file.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nix_file.rs b/src/nix_file.rs index fb373c8..4c63fdb 100644 --- a/src/nix_file.rs +++ b/src/nix_file.rs @@ -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, _)| {