Skip to content

Commit

Permalink
Fix compile tests
Browse files Browse the repository at this point in the history
  • Loading branch information
visortelle committed Apr 24, 2024
1 parent a6e545f commit 07feb54
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/run_pulsar_instance_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,7 @@ async fn test_start_pulsar_instance_c1_br1_bo1_zo1() {
num_brokers: 1,
num_bookies: 1,
num_zookeepers: 1,
with_dekaf: false,
},
)
.await
Expand All @@ -197,6 +198,7 @@ async fn test_start_pulsar_instance_c2_br1_bo1_zo1() {
num_brokers: 1,
num_bookies: 1,
num_zookeepers: 1,
with_dekaf: false,
},
)
.await
Expand All @@ -214,6 +216,7 @@ async fn test_start_pulsar_instance_c3_br1_bo1_zo1() {
num_brokers: 1,
num_bookies: 1,
num_zookeepers: 1,
with_dekaf: false,
},
)
.await
Expand All @@ -231,6 +234,7 @@ async fn test_start_pulsar_instance_c1_br3_bo3_zo3() {
num_brokers: 3,
num_bookies: 3,
num_zookeepers: 3,
with_dekaf: false,
},
)
.await
Expand All @@ -248,6 +252,7 @@ async fn test_start_pulsar_instance_c1_br2_bo2_zo1() {
num_brokers: 2,
num_bookies: 2,
num_zookeepers: 1,
with_dekaf: false,
},
)
.await
Expand Down Expand Up @@ -327,6 +332,7 @@ async fn test_restart_pulsar_instance_c1_br1_bo1_zo1() {
num_brokers: 1,
num_bookies: 1,
num_zookeepers: 1,
with_dekaf: false,
};

test_restart_pulsar_instance(instance_name, instance_config)
Expand All @@ -343,7 +349,7 @@ async fn test_restart_pulsar_instance_c2_br2_bo2_zo2() {
num_brokers: 2,
num_bookies: 2,
num_zookeepers: 2,

with_dekaf: false,
};

test_restart_pulsar_instance(instance_name, instance_config)
Expand Down

0 comments on commit 07feb54

Please sign in to comment.