Remove some unnecessary macro use

This commit is contained in:
Richard Feldman 2022-11-04 15:17:03 -04:00
parent dbd130fdb5
commit 589e135de3
No known key found for this signature in database
GPG key ID: F1F21AA5B1D9E43B

View file

@ -301,8 +301,8 @@ mod cli_run {
test_many_cli_commands: bool, // buildOnly, buildAndRun and buildAndRunIfNoErrors
) {
let file_name = file_path_from_root(dir_name, roc_filename);
let mut roc_app_args: Vec<String> = Vec::new();
let mut roc_app_args: Vec<String> = vec![];
for arg in args {
match arg {
Arg::ExamplePath(file) => {
@ -320,7 +320,7 @@ mod cli_run {
}
// workaround for surgical linker issue, see PR #3990
let mut custom_flags: Vec<&str> = vec![];
let mut custom_flags: Vec<&str> = Vec::new();
match executable_filename {
"form" | "hello-gui" | "breakout" | "ruby" => {