fix: return err on test result err (#2068)

This commit is contained in:
Pierre 2022-07-20 02:08:21 +10:00 committed by GitHub
parent fc3789520e
commit bd54c2b128
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -2031,7 +2031,8 @@ fn run_test_suite(
}
}
Err(err) => {
println!("Failed to run test: {:#}", err)
println!("Failed to run test: {:#}", err);
return Err(err);
}
}