Skip to content

Commit

Permalink
chore: formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
carlmontanari committed Oct 17, 2024
1 parent cb09ec5 commit 6650a5b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion driver/generic/sendwithcallbacks.go
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,12 @@ func (d *Driver) SendWithCallbacks(
driverOpts.FailedWhenContains = d.FailedWhenContains
}

r := response.NewResponse(input, d.Transport.GetHost(), d.Transport.GetPort(), driverOpts.FailedWhenContains)
r := response.NewResponse(
input,
d.Transport.GetHost(),
d.Transport.GetPort(),
driverOpts.FailedWhenContains,
)

if input != "" {
err := d.Channel.WriteAndReturn([]byte(input), false)
Expand Down

0 comments on commit 6650a5b

Please sign in to comment.