Format and update test

This commit is contained in:
Seiichi Uchida 2018-09-30 08:04:34 +09:00
parent d7e1f0006a
commit 6e901c8f37
2 changed files with 2 additions and 5 deletions

View File

@ -100,8 +100,7 @@ pub enum ErrorKind {
#[fail(
display = "line formatted, but exceeded maximum width \
(maximum: {} (see `max_width` option), found: {})",
_0,
_1
_0, _1
)]
LineOverflow(usize, usize),
/// Line ends in whitespace.

View File

@ -256,9 +256,7 @@ pub enum QlError {
// (kind, input, expected)
#[fail(
display = "Could not find {}: Found: {}, expected: {:?}",
0,
1,
2
0, 1, 2
)]
ResolveError(&'static str, String, Option<String>),
}