max_value -> MAX

This commit is contained in:
realbigsean
2024-06-13 17:42:48 -04:00
parent 5789db042d
commit 5f986f50f9
27 changed files with 82 additions and 87 deletions

View File

@@ -22,7 +22,7 @@ fn deterministic() {
fn children_deterministic() {
let master = DerivedKey::from_seed(&[42]).unwrap();
assert_eq!(
master.child(u32::max_value()).secret(),
master.child(u32::max_value()).secret(),
master.child(u32::MAX).secret(),
master.child(u32::MAX).secret(),
)
}