summaryrefslogtreecommitdiff
path: root/tests/src/tests.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/tests.rs')
-rw-r--r--tests/src/tests.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/src/tests.rs b/tests/src/tests.rs
index 58bd7cf7..940c9e3c 100644
--- a/tests/src/tests.rs
+++ b/tests/src/tests.rs
@@ -8,10 +8,10 @@ mod run;
mod world;
use std::path::Path;
+use std::sync::LazyLock;
use std::time::Duration;
use clap::Parser;
-use once_cell::sync::Lazy;
use parking_lot::Mutex;
use rayon::iter::{ParallelBridge, ParallelIterator};
@@ -19,7 +19,7 @@ use crate::args::{CliArguments, Command};
use crate::logger::Logger;
/// The parsed command line arguments.
-static ARGS: Lazy<CliArguments> = Lazy::new(CliArguments::parse);
+static ARGS: LazyLock<CliArguments> = LazyLock::new(CliArguments::parse);
/// The directory where the test suite is located.
const SUITE_PATH: &str = "tests/suite";