Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
Signed-off-by: xxchan <[email protected]>
  • Loading branch information
xxchan committed Apr 11, 2024
1 parent b48f0a9 commit f8da1c9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sqllogictest/src/runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,9 @@ impl<D: AsyncDB, M: MakeConnection<Conn = D>> Runner<D, M> {
cmd.stderr(std::process::Stdio::piped());
let result = D::run_command(cmd).await;
#[derive(thiserror::Error, Debug)]
#[error("process exited unsuccessfully: {status}\nstdout: {stdout}\nstderr: {stderr}")]
#[error(
"process exited unsuccessfully: {status}\nstdout: {stdout}\nstderr: {stderr}"
)]
struct SystemError {
status: ExitStatus,
stdout: String,
Expand Down

0 comments on commit f8da1c9

Please sign in to comment.