Fix tests (hopefully)

This commit is contained in:
Albin Hedman
2020-12-05 18:39:10 +01:00
parent d366ed2730
commit 7bd754cf8c
2 changed files with 3 additions and 3 deletions

View File

@@ -47,7 +47,7 @@ impl fmt::Display for ConstEvalErrKind {
Panic { msg, line, col, file } => {
write!(f, "the evaluated program panicked at '{}', {}:{}:{}", msg, file, line, col)
}
Abort(ref msg) => write!(f, "{}", msg)
Abort(ref msg) => write!(f, "{}", msg),
}
}
}