mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
Format.
This commit is contained in:
parent
3a6d4e6260
commit
393f751a27
2 changed files with 8 additions and 5 deletions
|
@ -193,8 +193,10 @@ fn v8_set_flags_preprocess(args: Vec<String>) -> (Vec<String>, Vec<String>) {
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_v8_set_flags_preprocess_1() {
|
fn test_v8_set_flags_preprocess_1() {
|
||||||
let js_args =
|
let js_args = v8_set_flags_preprocess(vec![
|
||||||
v8_set_flags_preprocess(vec!["deno".to_string(), "--v8-options".to_string()]);
|
"deno".to_string(),
|
||||||
|
"--v8-options".to_string(),
|
||||||
|
]);
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
js_args,
|
js_args,
|
||||||
(vec!["deno".to_string(), "--help".to_string()], vec![])
|
(vec!["deno".to_string(), "--help".to_string()], vec![])
|
||||||
|
@ -203,7 +205,8 @@ fn test_v8_set_flags_preprocess_1() {
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_v8_set_flags_preprocess_2() {
|
fn test_v8_set_flags_preprocess_2() {
|
||||||
let js_args = v8_set_flags_preprocess(vec!["deno".to_string(), "--help".to_string()]);
|
let js_args =
|
||||||
|
v8_set_flags_preprocess(vec!["deno".to_string(), "--help".to_string()]);
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
js_args,
|
js_args,
|
||||||
(vec!["deno".to_string()], vec!["--help".to_string()])
|
(vec!["deno".to_string()], vec!["--help".to_string()])
|
||||||
|
|
Loading…
Reference in a new issue