235f33b230
Previously tests would not fail if they encountered an error such as LineOverflow or TrailingWhitespace. Making the tests error out will fix this mismatch between running rustfmt for real and running the tests. This also modifies all tests that previously contained errors so that they no longer contain errors (in almost all of the tests this is accomplished by setting error_on_line_overflow = false).
23 lines
794 B
Rust
23 lines
794 B
Rust
// rustfmt-error_on_line_overflow: false
|
|
|
|
mod client {
|
|
impl Client {
|
|
fn test(self) -> Result<()> {
|
|
let next_state = match self.state {
|
|
State::V5(v5::State::Command(v5::coand::State::WriteVersion(ref mut response))) => {
|
|
let x = reformat.meeee();
|
|
}
|
|
};
|
|
|
|
let next_state = match self.state {
|
|
State::V5(v5::State::Command(v5::comand::State::WriteVersion(ref mut response))) => {
|
|
// The pattern cannot be formatted in a way that the match stays
|
|
// within the column limit. The rewrite should therefore be
|
|
// skipped.
|
|
let x = dont . reformat . meeee();
|
|
}
|
|
};
|
|
}
|
|
}
|
|
}
|