Skip to content

Commit 730f0b7

Browse files
committed
fixes
1 parent 9556fca commit 730f0b7

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/src/dev/testing/platform.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,7 @@ use patina_dxe_core::Core;
9797
9898
let test_runner = TestRunner::default()
9999
.with_filter("X64")
100-
.debug_mode(true)
101-
.fail_fast(true);
100+
.debug_mode(true);
102101
103102
Core::default()
104103
.init_memory(hob_list)

sdk/patina/src/test.rs

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,11 @@ use patina_macro::IntoService;
8888
use r_efi::efi::EVENT_GROUP_READY_TO_BOOT;
8989

9090
use crate as patina;
91-
use crate::boot_services::tpl::Tpl;
92-
use crate::boot_services::{BootServices, event::EventType};
93-
use crate::component::{IntoComponent, Storage};
94-
use crate::test::__private_api::{TestCase, TestTrigger};
91+
use crate::{
92+
boot_services::{BootServices, event::EventType, tpl::Tpl},
93+
component::{IntoComponent, Storage},
94+
test::__private_api::{TestCase, TestTrigger},
95+
};
9596

9697
#[doc(hidden)]
9798
pub use linkme;

0 commit comments

Comments
 (0)