summaryrefslogtreecommitdiffstats
path: root/src/core/src/process/thread.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/src/process/thread.rs')
-rw-r--r--src/core/src/process/thread.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/core/src/process/thread.rs b/src/core/src/process/thread.rs
index 3f5bbb5..749405b 100644
--- a/src/core/src/process/thread.rs
+++ b/src/core/src/process/thread.rs
@@ -1,12 +1,12 @@
use std::sync::Arc;
use captur::capture;
-use runtime::{Installer, RuntimeError, Threadable};
use crate::{
module,
module::{ExitStatus, State},
process::{Process, Results},
+ runtime::{Installer, RuntimeError, Threadable},
};
pub(crate) const THEAD_NAME: &str = "core_process";
@@ -74,13 +74,12 @@ mod tests {
sync::atomic::{AtomicBool, Ordering},
};
- use runtime::{testutils::ThreadableTester, Status};
-
use super::*;
use crate::{
events::Event,
input::StandardEvent,
module::Module,
+ runtime::{testutils::ThreadableTester, Status},
testutil::{create_default_test_module_handler, create_test_module_handler, process_test, ProcessTestContext},
};