Skip to content

Commit

Permalink
fix(file sink): Fix compilation of tests (#9684)
Browse files Browse the repository at this point in the history
Signed-off-by: Bruce Guenter <bruce.guenter@datadoghq.com>
  • Loading branch information
bruceg committed Oct 19, 2021
1 parent 8c6d364 commit b100f78
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/sinks/file/mod.rs
Expand Up @@ -374,7 +374,7 @@ mod tests {

#[tokio::test]
async fn single_partition() {
components::init();
components::init_test();
trace_init();

let template = temp_file();
Expand All @@ -401,7 +401,7 @@ mod tests {

#[tokio::test]
async fn single_partition_gzip() {
components::init();
components::init_test();
trace_init();

let template = temp_file();
Expand All @@ -428,7 +428,7 @@ mod tests {

#[tokio::test]
async fn many_partitions() {
components::init();
components::init_test();
trace_init();

let directory = temp_dir();
Expand Down Expand Up @@ -514,7 +514,7 @@ mod tests {

#[tokio::test]
async fn reopening() {
components::init();
components::init_test();
trace_init();

let template = temp_file();
Expand Down

0 comments on commit b100f78

Please sign in to comment.