Skip to content

Commit 6d9fefe

Browse files
committed
Increase random config test iterations to 10k
1 parent c533bae commit 6d9fefe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

api/src/config.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -546,15 +546,15 @@ mod tests {
546546

547547
#[test]
548548
fn mapping_serde() {
549-
for _ in 0..1000 {
549+
for _ in 0..10000 {
550550
let config = Mapping::random();
551551
assert_eq!(Mapping::deserialize(&config.serialize()), Ok(config));
552552
}
553553
}
554554

555555
#[test]
556556
fn config_serde() {
557-
for _ in 0..1000 {
557+
for _ in 0..10000 {
558558
let config = BootloaderConfig::random();
559559
assert_eq!(
560560
BootloaderConfig::deserialize(&config.serialize()),

0 commit comments

Comments
 (0)