@@ -208,8 +208,8 @@ mod tests {
208
208
let file = toml:: from_str :: < DebuggerConfig > ( & text) . unwrap ( ) ;
209
209
assert ! ( file. inputs. values( ) . is_empty( ) ) ;
210
210
assert ! ( file. advice_inputs. stack( ) . is_empty( ) ) ;
211
- assert_eq ! ( file. options. enable_tracing( ) , true ) ;
212
- assert_eq ! ( file. options. enable_debugging( ) , true ) ;
211
+ assert ! ( file. options. enable_tracing( ) ) ;
212
+ assert ! ( file. options. enable_debugging( ) ) ;
213
213
assert_eq ! ( file. options. max_cycles( ) , u32 :: MAX ) ;
214
214
assert_eq ! ( file. options. expected_cycles( ) , 64 ) ;
215
215
}
@@ -226,8 +226,8 @@ mod tests {
226
226
let file = DebuggerConfig :: parse_str ( & text) . unwrap ( ) ;
227
227
assert ! ( file. inputs. values( ) . is_empty( ) ) ;
228
228
assert ! ( file. advice_inputs. stack( ) . is_empty( ) ) ;
229
- assert_eq ! ( file. options. enable_tracing( ) , true ) ;
230
- assert_eq ! ( file. options. enable_debugging( ) , true ) ;
229
+ assert ! ( file. options. enable_tracing( ) ) ;
230
+ assert ! ( file. options. enable_debugging( ) ) ;
231
231
assert_eq ! ( file. options. max_cycles( ) , 1000 ) ;
232
232
assert_eq ! ( file. options. expected_cycles( ) , 64 ) ;
233
233
}
@@ -246,8 +246,8 @@ mod tests {
246
246
let file = DebuggerConfig :: parse_str ( & text) . unwrap ( ) ;
247
247
assert_eq ! ( file. inputs. values( ) , & [ RawFelt :: new( 3 ) , RawFelt :: new( 2 ) , RawFelt :: new( 1 ) ] ) ;
248
248
assert ! ( file. advice_inputs. stack( ) . is_empty( ) ) ;
249
- assert_eq ! ( file. options. enable_tracing( ) , true ) ;
250
- assert_eq ! ( file. options. enable_debugging( ) , true ) ;
249
+ assert ! ( file. options. enable_tracing( ) ) ;
250
+ assert ! ( file. options. enable_debugging( ) ) ;
251
251
assert_eq ! ( file. options. max_cycles( ) , 1000 ) ;
252
252
assert_eq ! ( file. options. expected_cycles( ) , 64 ) ;
253
253
}
@@ -283,8 +283,8 @@ mod tests {
283
283
file. advice_inputs. mapped_values( & digest) ,
284
284
Some ( [ RawFelt :: new( 1 ) , RawFelt :: new( 2 ) , RawFelt :: new( 3 ) , RawFelt :: new( 4 ) ] . as_slice( ) )
285
285
) ;
286
- assert_eq ! ( file. options. enable_tracing( ) , true ) ;
287
- assert_eq ! ( file. options. enable_debugging( ) , true ) ;
286
+ assert ! ( file. options. enable_tracing( ) ) ;
287
+ assert ! ( file. options. enable_debugging( ) ) ;
288
288
assert_eq ! ( file. options. max_cycles( ) , 1000 ) ;
289
289
assert_eq ! ( file. options. expected_cycles( ) , 64 ) ;
290
290
}
0 commit comments