diff options
Diffstat (limited to 'crates/alloc_buddy/tests')
-rw-r--r-- | crates/alloc_buddy/tests/hosted_test.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/alloc_buddy/tests/hosted_test.rs b/crates/alloc_buddy/tests/hosted_test.rs index 1afe263..d515f6e 100644 --- a/crates/alloc_buddy/tests/hosted_test.rs +++ b/crates/alloc_buddy/tests/hosted_test.rs @@ -20,7 +20,7 @@ proptest! { #[test] fn test_simple_scenario() { let scenario = Scenario { - range_sizes: vec![7], + range_sizes: vec![10], actions: vec![ Action::Debug, Action::Alloc { @@ -28,6 +28,7 @@ fn test_simple_scenario() { size_class: 0, }, Action::Debug, + Action::Dealloc { index: 0 }, ], }; scenario.run(false) |