aboutsummaryrefslogtreecommitdiff
path: root/crates/expect
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-07-01 10:25:22 +0100
committerAleksey Kladov <[email protected]>2020-07-01 10:26:09 +0100
commit05d67a9a0efafb3dd5087aad17d75aa88aa85178 (patch)
tree09d2a86085726b0fd08b6a27bfd19001395ac14a /crates/expect
parentadf624b433277a0106f5354bb7d62ab1a04f216b (diff)
Move test data to test_data directory
Diffstat (limited to 'crates/expect')
-rw-r--r--crates/expect/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/expect/src/lib.rs b/crates/expect/src/lib.rs
index 3f293f5d5..a5e26fade 100644
--- a/crates/expect/src/lib.rs
+++ b/crates/expect/src/lib.rs
@@ -39,7 +39,7 @@ macro_rules! expect {
39 [[]] => { $crate::expect![[""]] }; 39 [[]] => { $crate::expect![[""]] };
40} 40}
41 41
42/// expect_file!["/crates/foo/test_data/foo.rs"] 42/// expect_file!["/crates/foo/test_data/bar.html"]
43#[macro_export] 43#[macro_export]
44macro_rules! expect_file { 44macro_rules! expect_file {
45 [$path:literal] => {$crate::ExpectFile { path: $path }}; 45 [$path:literal] => {$crate::ExpectFile { path: $path }};