Skip to content

Commit

Permalink
Fix OS-specific import
Browse files Browse the repository at this point in the history
  • Loading branch information
mtkennerly committed Nov 17, 2024
1 parent 3f18ba8 commit 85392e5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/scan/preview.rs
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,10 @@ mod tests {
use pretty_assertions::assert_eq;
use velcro::{btree_map, hash_map};

use crate::{path::StrictPath, scan::ScannedRegistryValue};
use crate::path::StrictPath;

#[cfg(target_os = "windows")]
use crate::scan::ScannedRegistryValue;

use super::*;

Expand Down

0 comments on commit 85392e5

Please sign in to comment.