Lets see if changing `span_fatal` to `span_err` gets me further through make check.

This commit is contained in:
Felix S. Klock II 2013-05-02 01:31:58 +02:00
parent 880e300ed7
commit 46c2b5b045
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ fn is_test_fn(cx: @mut TestCtxt, i: @ast::item) -> bool {
if has_test_attr && !has_test_signature(i) {
let sess = cx.sess;
sess.span_fatal(
sess.span_err(
i.span,
~"functions used as tests must have signature fn() -> ()."
);