File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -283,7 +283,7 @@ pub fn format<K: Borrow<str> + Eq + Hash>(
283
283
width,
284
284
precision,
285
285
trait_,
286
- } = FormatArgument :: from_str ( format) ?;
286
+ } = dbg ! ( FormatArgument :: from_str( format) ?) ;
287
287
let value = context. get ( ident) ?;
288
288
if fill. is_some ( ) {
289
289
unimplemented ! ( "fill is not supported" ) ;
Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ fn test(
110
110
converter : impl Display ,
111
111
strategy : impl Strategy < Value = FormatArgument > ,
112
112
) {
113
- let mut runner = TestRunner :: default ( ) ;
113
+ let mut runner = TestRunner :: deterministic ( ) ;
114
114
let values: Vec < _ > = iter:: repeat_with ( || strategy. new_tree ( & mut runner) )
115
115
. take ( 1000 )
116
116
. map ( |s| s. unwrap ( ) . current ( ) )
You can’t perform that action at this time.
0 commit comments