about summary refs log tree commit diff
path: root/src/liballoc/tests
diff options
context:
space:
mode:
authorTim Diekmann <tim.diekmann@3dvision.de>2020-03-25 21:12:12 +0100
committerTim Diekmann <tim.diekmann@3dvision.de>2020-03-26 17:14:12 +0100
commit03b055b0b4dcf304cd3c5e7a1c6e68fea91584a9 (patch)
tree756da5c6b9cc313eae56f2e6c1af896597f7facf /src/liballoc/tests
parentbfbdb5f06fcff7939825c33ce573b8f92b362c40 (diff)
Remove alignment from `MemoryBlock`
Diffstat (limited to 'src/liballoc/tests')
-rw-r--r--src/liballoc/tests/heap.rs7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/liballoc/tests/heap.rs b/src/liballoc/tests/heap.rs
index 4b0d7bc1f44..709e8c148d5 100644
--- a/src/liballoc/tests/heap.rs
+++ b/src/liballoc/tests/heap.rs
@@ -1,4 +1,4 @@
-use std::alloc::{AllocInit, AllocRef, Global, Layout, MemoryBlock, System};
+use std::alloc::{AllocInit, AllocRef, Global, Layout, System};
 
 /// Issue #45955 and #62251.
 #[test]
@@ -39,10 +39,7 @@ fn check_overalign_requests<T: AllocRef>(mut allocator: T) {
 
                 // Clean up
                 for &ptr in &pointers {
-                    allocator.dealloc(MemoryBlock::new(
-                        ptr,
-                        Layout::from_size_align(size, align).unwrap(),
-                    ))
+                    allocator.dealloc(ptr, Layout::from_size_align(size, align).unwrap())
                 }
             }
         }