We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdd7927 commit 8d29337Copy full SHA for 8d29337
src/runner.rs
@@ -55,9 +55,8 @@ impl Requirements {
55
if re.is_match(&input_path) {
56
let testfn = self.test;
57
let name = utils::derive_test_name(&root, &path, &self.test_name);
58
-
59
Some(Trial::test(name, move || {
60
- (testfn)(&path).map_err(Into::into)
+ (testfn)(&path).map_err(|err| format!("{:?}", err).into())
61
}))
62
} else {
63
None
0 commit comments