Fix module references.

This commit is contained in:
Jeremy Wall 2018-04-28 11:06:53 -05:00
parent 0d0f66f9c7
commit f4b5cf1b0c
2 changed files with 2 additions and 2 deletions

View File

@ -1201,7 +1201,7 @@ mod compile_test {
#[cfg(test)]
mod test {
use super::{Builder, CallDef, MacroDef, SelectDef, Val};
use ast::*;
use ast::tree::*;
use std::rc::Rc;
fn test_expr_to_val(mut cases: Vec<(Expression, Val)>, b: Builder) {

View File

@ -77,7 +77,7 @@ impl<V: Into<String> + Clone> Formatter<V> {
#[cfg(test)]
mod test {
use super::Formatter;
use ast::Position;
use ast::tree::Position;
#[test]
fn test_format_happy_path() {