Skip to content

Commit

Permalink
runtime constant test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
smohan-dw committed Jan 4, 2024
1 parent 9a75464 commit dc1a872
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/constants/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ mod tests {
let full_block = WeightToFee::weight_to_fee(&MAXIMUM_BLOCK_WEIGHT);
println!("Full Block {}", full_block);
assert!(full_block >= 1_00 * UNITS);
assert!(full_block <= 1_000 * UNITS);
assert!(full_block <= 2_000 * UNITS);
}

#[test]
Expand Down

0 comments on commit dc1a872

Please sign in to comment.