Skip to content

Commit

Permalink
remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
mmastrac committed Apr 25, 2024
1 parent 32365b7 commit 37f8db6
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion denokv/tests/integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ impl RemoteTransport for ReqwestClient {
headers: http::HeaderMap,
body: Bytes,
) -> Result<(Url, http::StatusCode, Self::Response), anyhow::Error> {
eprintln!("{body:?} {headers:?}");
let res = self.0.post(url).headers(headers).body(body).send().await?;
let url = res.url().clone();
let status = res.status().clone();
Expand Down

0 comments on commit 37f8db6

Please sign in to comment.