diff options
author | Bert Belder <bertbelder@gmail.com> | 2019-03-28 08:09:19 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-03-28 08:09:19 -0400 |
commit | da1b98b690e39ce4becf314910d046b9850f650f (patch) | |
tree | 74efb61fb65d6541623538b7e2bcfb55582ca090 /cli/compiler.rs | |
parent | 1fec34b4632521068c31815c1d9f92286b6d0297 (diff) |
Clippy fixes (#2009)
Diffstat (limited to 'cli/compiler.rs')
-rw-r--r-- | cli/compiler.rs | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/cli/compiler.rs b/cli/compiler.rs index 0452e08a9..085fcd820 100644 --- a/cli/compiler.rs +++ b/cli/compiler.rs @@ -186,12 +186,8 @@ mod tests { maybe_source_map: None, }; - out = compile_sync( - Arc::new(IsolateState::mock()), - specifier, - &referrer, - &mut out, - ); + out = + compile_sync(Arc::new(IsolateState::mock()), specifier, &referrer, &out); assert!( out .maybe_output_code |