From 88bea61bab493e5b58faac551ab67c0983e3fc98 Mon Sep 17 00:00:00 2001 From: gered Date: Mon, 17 Apr 2023 15:27:17 -0400 Subject: [PATCH] "fix" some compiler warnings while these are not used currently, i'm not able to rule out the possiblity that i'll want to use them in the near-ish future for future tests. --- ggdt/src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ggdt/src/lib.rs b/ggdt/src/lib.rs index a2cf52a..f382a7b 100644 --- a/ggdt/src/lib.rs +++ b/ggdt/src/lib.rs @@ -21,9 +21,12 @@ mod tests { use byteorder::{LittleEndian, ReadBytesExt}; + #[allow(dead_code)] const ASSETS_PATH: &str = "./assets/"; + const TEST_ASSETS_PATH: &str = "./test-assets/"; + #[allow(dead_code)] pub fn assets_file(file: &Path) -> PathBuf { PathBuf::from(ASSETS_PATH).join(file) }