Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
Signed-off-by: Keran Yang <yangkr920208@gmail.com>
  • Loading branch information
KeranYang committed Oct 1, 2024
1 parent 767af03 commit 63accfc
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/sourcetransform.rs
Original file line number Diff line number Diff line change
Expand Up @@ -662,9 +662,9 @@ mod tests {
Duration::from_secs(2),
client.source_transform_fn(ReceiverStream::new(rx)),
)
.await
.map_err(|_| "timeout while getting stream for source_transform_fn")??
.into_inner();
.await
.map_err(|_| "timeout while getting stream for source_transform_fn")??
.into_inner();

let handshake_resp = stream.message().await?.unwrap();
assert!(
Expand Down Expand Up @@ -767,9 +767,9 @@ mod tests {
Duration::from_secs(2),
client.source_transform_fn(ReceiverStream::new(rx)),
)
.await
.map_err(|_| "timeout while getting stream for source_transform_fn")??
.into_inner();
.await
.map_err(|_| "timeout while getting stream for source_transform_fn")??
.into_inner();

let handshake_resp = stream.message().await?.unwrap();
assert!(
Expand Down Expand Up @@ -800,4 +800,4 @@ mod tests {
assert!(task.is_finished(), "gRPC server is still running");
Ok(())
}
}
}

0 comments on commit 63accfc

Please sign in to comment.