File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -107,7 +107,11 @@ impl ProverRouter {
107107 }
108108
109109 // Coq for inductive proofs ("proof_techniques.induction")
110- if goal. aspects . iter ( ) . any ( |s| s. starts_with ( "proof_techniques." ) ) {
110+ if goal
111+ . aspects
112+ . iter ( )
113+ . any ( |s| s. starts_with ( "proof_techniques." ) )
114+ {
111115 return ProverKind :: Coq ;
112116 }
113117
Original file line number Diff line number Diff line change @@ -1251,7 +1251,10 @@ mod tests {
12511251
12521252 #[ test]
12531253 fn test_dotted_key_natural_numbers ( ) {
1254- assert_eq ! ( Aspect :: NaturalNumbers . dotted_key( ) , "arithmetic.natural_numbers" ) ;
1254+ assert_eq ! (
1255+ Aspect :: NaturalNumbers . dotted_key( ) ,
1256+ "arithmetic.natural_numbers"
1257+ ) ;
12551258 }
12561259
12571260 #[ test]
@@ -1261,7 +1264,10 @@ mod tests {
12611264
12621265 #[ test]
12631266 fn test_dotted_key_propositional_logic ( ) {
1264- assert_eq ! ( Aspect :: PropositionalLogic . dotted_key( ) , "logic.propositional_logic" ) ;
1267+ assert_eq ! (
1268+ Aspect :: PropositionalLogic . dotted_key( ) ,
1269+ "logic.propositional_logic"
1270+ ) ;
12651271 }
12661272
12671273 #[ test]
Original file line number Diff line number Diff line change @@ -105,7 +105,10 @@ async fn test_health_status_richer_payload() {
105105 ..GnnConfig :: default ( )
106106 } ) ;
107107
108- let health = client. health_status ( ) . await . expect ( "health_status should succeed" ) ;
108+ let health = client
109+ . health_status ( )
110+ . await
111+ . expect ( "health_status should succeed" ) ;
109112
110113 assert ! ( health. gnn_model_loaded, "mock reports model loaded" ) ;
111114 assert_eq ! ( health. model_path. as_deref( ) , Some ( "/fake/path" ) ) ;
@@ -118,11 +121,7 @@ async fn test_health_status_richer_payload() {
118121
119122// ─── helper: assert top tactic from suggest_tactics ─────────────────────────
120123
121- async fn assert_top_tactic_is_apply (
122- kind : ProverKind ,
123- prover_name : & str ,
124- base_url : & str ,
125- ) {
124+ async fn assert_top_tactic_is_apply ( kind : ProverKind , prover_name : & str , base_url : & str ) {
126125 let backend = ProverFactory :: create ( kind, gnn_config ( base_url) )
127126 . unwrap_or_else ( |e| panic ! ( "Failed to create {:?} backend: {}" , kind, e) ) ;
128127
@@ -140,7 +139,11 @@ async fn assert_top_tactic_is_apply(
140139
141140 let first = & tactics[ 0 ] ;
142141 match first {
143- echidna:: core:: Tactic :: Custom { prover, command, args } => {
142+ echidna:: core:: Tactic :: Custom {
143+ prover,
144+ command,
145+ args,
146+ } => {
144147 assert_eq ! (
145148 prover. as_str( ) ,
146149 prover_name,
You can’t perform that action at this time.
0 commit comments