summaryrefslogtreecommitdiff
path: root/tests/src
diff options
context:
space:
mode:
authorYang Hau <vulxj0j8j8@gmail.com>2023-06-07 07:42:58 -0500
committerGitHub <noreply@github.com>2023-06-07 14:42:58 +0200
commit0dc1776202149bb59c21d1db8efe2a10c409b6e6 (patch)
tree559458439d86e43ec5376e33db7cc18b5139caca /tests/src
parent3d3ea9016f339b3753fc7e4c909d6a522a0b7a75 (diff)
refactor: Replace once_cell to std lib (#1402)
Diffstat (limited to 'tests/src')
-rw-r--r--tests/src/tests.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/src/tests.rs b/tests/src/tests.rs
index bf3d19c1..debb3c92 100644
--- a/tests/src/tests.rs
+++ b/tests/src/tests.rs
@@ -13,9 +13,9 @@ use std::{env, io};
use clap::Parser;
use comemo::{Prehashed, Track};
use elsa::FrozenVec;
-use once_cell::unsync::OnceCell;
use oxipng::{InFile, Options, OutFile};
use rayon::iter::{ParallelBridge, ParallelIterator};
+use std::cell::OnceCell;
use tiny_skia as sk;
use unscanny::Scanner;
use walkdir::WalkDir;