We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
vec!
1 parent 3321fde commit 339bf7bCopy full SHA for 339bf7b
src/integration.rs
@@ -122,7 +122,7 @@ mod tests {
122
.join("cloud-init")
123
.join("ubuntu");
124
125
- vec!["meta-data", "user-data"].iter().for_each(|x| {
+ ["meta-data", "user-data"].iter().for_each(|x| {
126
fs::copy(source_file_dir.join(x), cloud_init_directory.join(x))
127
.expect("Expect copying cloud-init meta-data to succeed");
128
});
@@ -151,7 +151,7 @@ mod tests {
151
.output()
152
.expect("Expect creating disk image to succeed");
153
154
- vec!["user-data", "meta-data", "network-config"]
+ ["user-data", "meta-data", "network-config"]
155
.iter()
156
.for_each(|x| {
157
std::process::Command::new("mcopy")
0 commit comments