Update tests/test-generator/src/processors.rs

Co-Authored-By: Mark McCaskey <5770194+MarkMcCaskey@users.noreply.github.com>
This commit is contained in:
Syrus Akbary 2020-04-16 13:46:12 -07:00 committed by GitHub
parent 6021d1735a
commit 80ed212a9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,8 +23,8 @@ pub fn wast_processor(out: &mut Testsuite, p: PathBuf) -> Option<Test> {
let body = format!("crate::run_wast(r#\"{}\"#, \"{}\")", p.display(), compiler);
Some(Test {
name: testname.to_string(),
body: body.to_string(),
name: testname,
body,
})
}