Revert "refactor(cli): use new sanitizer for resources (#22125)" (#22153)

This commit is contained in:
Bartek Iwańczuk 2024-01-27 20:37:36 +01:00 committed by GitHub
parent cc0a372127
commit 7281775381
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 204 additions and 239 deletions

View file

@ -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;