Skip to content

Commit

Permalink
rustmt cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ekump committed Jul 8, 2024
1 parent f0efdda commit 7459183
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion trace-utils/src/test_utils/datadog_test_agent.rs
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,11 @@ impl DatadogTestAgent {

async fn get_base_uri_string(&self) -> String {
let container_host = self.container.get_host().await.unwrap().to_string();
let container_port = self.container.get_host_port_ipv4(TEST_AGENT_PORT).await.unwrap();
let container_port = self
.container
.get_host_port_ipv4(TEST_AGENT_PORT)
.await
.unwrap();

format!("http://{}:{}", container_host, container_port)
}
Expand Down

0 comments on commit 7459183

Please sign in to comment.