summaryrefslogtreecommitdiff
path: root/core/js_errors.rs
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-07-31 17:11:37 -0400
committerGitHub <noreply@github.com>2019-07-31 17:11:37 -0400
commit3971dcfe10b94e901a224b5328a9dafd1e2ecc08 (patch)
treee347644a90094774e56e9315119c31594ca60796 /core/js_errors.rs
parentb3541c38f5672ffb4a29d66dca19d88b9ecae478 (diff)
Use system rustfmt instead of fixed binary (#2701)
Diffstat (limited to 'core/js_errors.rs')
-rw-r--r--core/js_errors.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/core/js_errors.rs b/core/js_errors.rs
index 08cb00a72..3656242e0 100644
--- a/core/js_errors.rs
+++ b/core/js_errors.rs
@@ -310,7 +310,8 @@ mod tests {
"isConstructor":false,
"isWasm":false
}"#,
- ).unwrap();
+ )
+ .unwrap();
let r = StackFrame::from_json_value(&v);
assert_eq!(
r,
@@ -334,7 +335,8 @@ mod tests {
"line": 2,
"column": 11
}"#,
- ).unwrap();
+ )
+ .unwrap();
let r = StackFrame::from_json_value(&v);
assert!(r.is_some());
let f = r.unwrap();