Skip to content

Commit 6749496

Browse files
committed
chore(vdev): fix rustfmt formatting in test command
1 parent dd83978 commit 6749496

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

vdev/src/commands/test.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,10 @@ impl Cli {
5252
args.extend(["--features".to_string(), self.features.join(",")]);
5353
}
5454
} else {
55-
args.extend(["--features".to_string(), platform::default_features().to_string()]);
55+
args.extend([
56+
"--features".to_string(),
57+
platform::default_features().to_string(),
58+
]);
5659
}
5760

5861
LocalTestRunner.test(

0 commit comments

Comments
 (0)