Fix all the test fallout

This commit is contained in:
Corey Richardson 2014-07-08 22:28:52 -07:00
parent 092c5078be
commit 69a0cdf491
7 changed files with 100 additions and 87 deletions

View file

@ -757,8 +757,8 @@ mod test {
use ast;
use ext::mtwt;
fn mark_ident(id : Ident, m : ast::Mrk) -> Ident {
Ident{name:id.name,ctxt:mtwt::apply_mark(m,id.ctxt)}
fn mark_ident(id : ast::Ident, m : ast::Mrk) -> ast::Ident {
ast::Ident { name: id.name, ctxt:mtwt::apply_mark(m, id.ctxt) }
}
#[test] fn mtwt_token_eq_test() {