diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2020-11-28 06:47:35 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-28 06:47:35 +1100 |
commit | e2858d0bbb13dae202e7da9ee7bbb81916349d1e (patch) | |
tree | c47084e73a9d4c7a852546374069b1aa176c3265 /cli/flags.rs | |
parent | 40bf26b37d82c7a85c3d6a54947fc441eb5e6946 (diff) |
chore: clippy future cleanups (#8514)
Diffstat (limited to 'cli/flags.rs')
-rw-r--r-- | cli/flags.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/flags.rs b/cli/flags.rs index fb489bbb5..5219471f2 100644 --- a/cli/flags.rs +++ b/cli/flags.rs @@ -2574,7 +2574,7 @@ mod tests { subcommand: DenoSubcommand::Run { script: "script.ts".to_string(), }, - seed: Some(250 as u64), + seed: Some(250_u64), v8_flags: Some(svec!["--random-seed=250"]), ..Flags::default() } @@ -2597,7 +2597,7 @@ mod tests { subcommand: DenoSubcommand::Run { script: "script.ts".to_string(), }, - seed: Some(250 as u64), + seed: Some(250_u64), v8_flags: Some(svec!["--expose-gc", "--random-seed=250"]), ..Flags::default() } |