diff options
author | Nathan Ringo <nathan@remexre.com> | 2024-09-01 12:26:47 -0500 |
---|---|---|
committer | Nathan Ringo <nathan@remexre.com> | 2024-09-01 12:26:47 -0500 |
commit | 8b50585b5f15cb52fdb584af5dd4536b9839a802 (patch) | |
tree | dc9e52930cdd934bcfff97c083fb187d6c0ea08f /crates/buddy_allocator/tests/hosted_test.rs | |
parent | ac876162d111ced97969f5e17accb5d4aec789f6 (diff) |
Fix UB.
Diffstat (limited to 'crates/buddy_allocator/tests/hosted_test.rs')
-rw-r--r-- | crates/buddy_allocator/tests/hosted_test.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/buddy_allocator/tests/hosted_test.rs b/crates/buddy_allocator/tests/hosted_test.rs index d6d3389..89398ce 100644 --- a/crates/buddy_allocator/tests/hosted_test.rs +++ b/crates/buddy_allocator/tests/hosted_test.rs @@ -20,7 +20,7 @@ proptest! { #[test] fn test_simple_scenario() { let scenario = Scenario { - range_sizes: vec![16], + range_sizes: vec![5], actions: vec![ Action::Debug, Action::Alloc { |