Skip to content

Commit f1092b4

Browse files
committed
reduce test count
1 parent 9f03625 commit f1092b4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ pub fn format<K: Borrow<str> + Eq + Hash>(
283283
width,
284284
precision,
285285
trait_,
286-
} = dbg!(FormatArgument::from_str(format)?);
286+
} = FormatArgument::from_str(format)?;
287287
let value = context.get(ident)?;
288288
if fill.is_some() {
289289
unimplemented!("fill is not supported");

tests/test.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ fn test(
112112
) {
113113
let mut runner = TestRunner::deterministic();
114114
let values: Vec<_> = iter::repeat_with(|| strategy.new_tree(&mut runner))
115-
.take(1000)
115+
.take(100)
116116
.map(|s| s.unwrap().current())
117117
.map(|format_arg| {
118118
let format_arg = format_arg.to_string();

0 commit comments

Comments
 (0)