From f894fb15d58f54876b0d117dff9fae19334bdf6a Mon Sep 17 00:00:00 2001 From: Robert-M-Lucas <100799838+Robert-M-Lucas@users.noreply.github.com> Date: Wed, 1 Jan 2025 14:30:55 +0000 Subject: [PATCH] cargo fmt --- tests/heap_allocation.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/heap_allocation.rs b/tests/heap_allocation.rs index b4c6db44..56f7cb7c 100644 --- a/tests/heap_allocation.rs +++ b/tests/heap_allocation.rs @@ -7,9 +7,9 @@ extern crate alloc; use alloc::{boxed::Box, vec::Vec}; -use core::hint::black_box; use blog_os::allocator::HEAP_SIZE; use bootloader::{entry_point, BootInfo}; +use core::hint::black_box; use core::panic::PanicInfo; entry_point!(main);