We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f03625 commit f1092b4Copy full SHA for f1092b4
src/lib.rs
@@ -283,7 +283,7 @@ pub fn format<K: Borrow<str> + Eq + Hash>(
283
width,
284
precision,
285
trait_,
286
- } = dbg!(FormatArgument::from_str(format)?);
+ } = FormatArgument::from_str(format)?;
287
let value = context.get(ident)?;
288
if fill.is_some() {
289
unimplemented!("fill is not supported");
tests/test.rs
@@ -112,7 +112,7 @@ fn test(
112
) {
113
let mut runner = TestRunner::deterministic();
114
let values: Vec<_> = iter::repeat_with(|| strategy.new_tree(&mut runner))
115
- .take(1000)
+ .take(100)
116
.map(|s| s.unwrap().current())
117
.map(|format_arg| {
118
let format_arg = format_arg.to_string();
0 commit comments