Skip to content

Commit 4326c8e

Browse files
author
Grant Wuerker
committed
fmt
1 parent 0a4334d commit 4326c8e

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

crates/language-server/tests/dependency_reresolution.rs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -111,10 +111,7 @@ fn test_dependency_not_reresolved_across_ingots() {
111111

112112
// Verify dependency relationships
113113
let c_deps = graph_after_c.dependency_urls(&db, &ingot_c_url);
114-
assert!(
115-
c_deps.contains(&ingot_b_url),
116-
"C should depend on B"
117-
);
114+
assert!(c_deps.contains(&ingot_b_url), "C should depend on B");
118115
assert!(
119116
c_deps.contains(&ingot_a_url),
120117
"C should transitively depend on A"
@@ -152,8 +149,7 @@ fn test_idempotent_ingot_loading() {
152149

153150
// The graph should have the same number of URLs
154151
assert_eq!(
155-
count_after_first,
156-
count_after_second,
152+
count_after_first, count_after_second,
157153
"Graph should have same number of URLs after loading the same ingot twice"
158154
);
159155
}

0 commit comments

Comments
 (0)