From 8b50585b5f15cb52fdb584af5dd4536b9839a802 Mon Sep 17 00:00:00 2001 From: Nathan Ringo Date: Sun, 1 Sep 2024 12:26:47 -0500 Subject: Fix UB. --- crates/buddy_allocator/tests/hosted_test.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crates/buddy_allocator/tests') 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 { -- cgit v1.2.3