diff options
Diffstat (limited to 'core/js_errors.rs')
-rw-r--r-- | core/js_errors.rs | 6 |
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(); |