diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-01-27 20:37:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-27 20:37:36 +0100 |
commit | 7281775381cda79ef61df27820387dc2c74e0384 (patch) | |
tree | 14a89942587036f582feda6d49986171987d8542 /cli/lsp/testing | |
parent | cc0a3721275398a5b081ba5ee8e13fa2410ada04 (diff) |
Revert "refactor(cli): use new sanitizer for resources (#22125)" (#22153)
Diffstat (limited to 'cli/lsp/testing')
-rw-r--r-- | cli/lsp/testing/execution.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cli/lsp/testing/execution.rs b/cli/lsp/testing/execution.rs index 11882e6af..69f218be8 100644 --- a/cli/lsp/testing/execution.rs +++ b/cli/lsp/testing/execution.rs @@ -363,9 +363,7 @@ impl TestRun { test::TestResult::Ignored => summary.ignored += 1, test::TestResult::Failed(error) => { summary.failed += 1; - summary - .failures - .push(((&description).into(), error.clone())); + summary.failures.push((description.clone(), error.clone())); } test::TestResult::Cancelled => { summary.failed += 1; |