Skip to content

Commit ac1b8e8

Browse files
committed
fix lint
1 parent 54f3ce9 commit ac1b8e8

File tree

1 file changed

+15
-3
lines changed
  • opentelemetry-otlp/tests/integration_test/tests

1 file changed

+15
-3
lines changed

opentelemetry-otlp/tests/integration_test/tests/logs.rs

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -197,20 +197,32 @@ mod logtests {
197197
}
198198

199199
#[tokio::test(flavor = "multi_thread", worker_threads = 4)]
200-
#[cfg(any(feature = "tonic-client", feature = "reqwest-client", feature = "hyper-client"))]
200+
#[cfg(any(
201+
feature = "tonic-client",
202+
feature = "reqwest-client",
203+
feature = "hyper-client"
204+
))]
201205
pub async fn logs_simple_tokio_multi_thread() -> Result<()> {
202206
logs_tokio_helper(true).await
203207
}
204208

205209
#[tokio::test(flavor = "multi_thread", worker_threads = 1)]
206-
#[cfg(any(feature = "tonic-client", feature = "reqwest-client", feature = "hyper-client"))]
210+
#[cfg(any(
211+
feature = "tonic-client",
212+
feature = "reqwest-client",
213+
feature = "hyper-client"
214+
))]
207215
pub async fn logs_simple_tokio_multi_with_one_worker() -> Result<()> {
208216
logs_tokio_helper(true).await
209217
}
210218

211219
#[ignore] // https://github.com/open-telemetry/opentelemetry-rust/issues/2539
212220
#[tokio::test(flavor = "current_thread")]
213-
#[cfg(any(feature = "tonic-client", feature = "reqwest-client", feature = "hyper-client"))]
221+
#[cfg(any(
222+
feature = "tonic-client",
223+
feature = "reqwest-client",
224+
feature = "hyper-client"
225+
))]
214226
pub async fn logs_simple_tokio_current() -> Result<()> {
215227
logs_tokio_helper(true).await
216228
}

0 commit comments

Comments
 (0)