Skip to content

Commit ad1c22e

Browse files
fix(test_macros): use $crate to import types in test_vfs macro to hopefully address #18
1 parent 65004c8 commit ad1c22e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/test_macros.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ macro_rules! test_vfs {
55
#[cfg(test)]
66
mod vfs_tests {
77
use super::*;
8-
use crate::VfsFileType;
9-
use crate::VfsPath;
8+
use $crate::VfsFileType;
9+
use $crate::VfsPath;
10+
use $crate::VfsResult;
1011

1112
fn create_root() -> VfsPath {
1213
$root.into()

0 commit comments

Comments
 (0)