Simplify how regression tests are imported

This commit is contained in:
David Tolnay 2020-09-05 12:33:03 -07:00
parent 02ab4a77ce
commit 509d52e70a
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
2 changed files with 3 additions and 3 deletions

View File

@ -1,2 +1,3 @@
#[path = "regression/mod.rs"]
mod regression;
mod regression {
automod::dir!("tests/regression");
}

View File

@ -1 +0,0 @@
automod::dir!("tests/regression");