Skip to content

Commit 008f700

Browse files
committed
Fix formatting
1 parent ea1e24e commit 008f700

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

cobalt-cli/src/tests/hello_world.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,11 @@ fn test_hello_world_aot_linked() {
5353
let input_main_path_str = "src/tests/inputs/hello_world_linked_main.co";
5454
let input_lib_path_str = "src/tests/inputs/hello_world_linked_lib.co";
5555
let output_main_path_str = "src/tests/outputs/hello_world_linked";
56-
let output_lib_path_str = Path::new("src/tests/outputs").join(cobalt_build::libs::format_lib("hello_world_linked", cobalt_build::HOST_TRIPLE, true));
56+
let output_lib_path_str = Path::new("src/tests/outputs").join(cobalt_build::libs::format_lib(
57+
"hello_world_linked",
58+
cobalt_build::HOST_TRIPLE,
59+
true,
60+
));
5761
// ---
5862

5963
let input_lib = clio::Input::new(input_lib_path_str);
@@ -63,7 +67,6 @@ fn test_hello_world_aot_linked() {
6367
&input_lib.unwrap_err()
6468
);
6569

66-
6770
let output_lib = clio::OutputPath::new(&output_lib_path_str);
6871
assert!(
6972
output_lib.is_ok(),

cobalt-cli/src/tests/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
use super::*;
22

3-
mod hello_world;
3+
mod hello_world;

0 commit comments

Comments
 (0)