Skip to content

Commit

Permalink
spelling: unexpectedly
Browse files Browse the repository at this point in the history
Signed-off-by: Josh Soref <[email protected]>
  • Loading branch information
jsoref committed Apr 14, 2023
1 parent 704bc05 commit 37cb8d0
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 8 deletions.
8 changes: 6 additions & 2 deletions tests/source/expr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -471,14 +471,18 @@ fn issue3226() {
{
{
{
return Err(ErrorKind::ManagementInterfaceError("Server exited unexpectedly").into())
{
return Err(ErrorKind::ManagementInterfaceError("Server exited unexpectedly").into())
}
}
}
}
{
{
{
break Err(ErrorKind::ManagementInterfaceError("Server exited unexpectedlyy").into())
{
break Err(ErrorKind::ManagementInterfaceError("Server exited unexpectedly").into())
}
}
}
}
Expand Down
16 changes: 10 additions & 6 deletions tests/target/expr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -550,18 +550,22 @@ fn issue3226() {
{
{
{
return Err(
ErrorKind::ManagementInterfaceError("Server exited unexpectedly").into(),
);
{
return Err(
ErrorKind::ManagementInterfaceError("Server exited unexpectedly").into(),
);
}
}
}
}
{
{
{
break Err(
ErrorKind::ManagementInterfaceError("Server exited unexpectedlyy").into(),
);
{
break Err(
ErrorKind::ManagementInterfaceError("Server exited unexpectedly").into(),
);
}
}
}
}
Expand Down

0 comments on commit 37cb8d0

Please sign in to comment.