TESTS: Use EVAL as the file name for our compile test.

This commit is contained in:
Jeremy Wall 2018-06-04 22:24:38 -05:00
parent d9c9874788
commit b306692627

View File

@ -2,7 +2,7 @@ use super::Builder;
use std;
fn assert_build(input: &str) {
let mut b = Builder::new(std::env::current_dir().unwrap());
let mut b = Builder::new("<Eval>");
b.enable_validate_mode();
b.eval_string(input).unwrap();
if !b.assert_collector.success {