File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed
crates/language-server/tests Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments