Skip to content

Commit 94aaebb

Browse files
committed
Accelerate end to end test
1 parent da89b00 commit 94aaebb

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

mithril-test-lab/mithril-end-to-end/src/end_to_end_spec.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ impl Spec {
3232
.await?
3333
.unwrap_or_default();
3434

35-
// Wait 2 epochs after start epoch for the aggregator to be able to bootstrap a genesis certificate
36-
let mut target_epoch = start_epoch + 2;
35+
// Wait 3 epochs after start epoch for the aggregator to be able to bootstrap a genesis certificate
36+
let mut target_epoch = start_epoch + 3;
3737
wait_for_target_epoch(
3838
self.infrastructure.chain_observer(),
3939
target_epoch,
@@ -93,6 +93,7 @@ impl Spec {
9393
let certificate_hash =
9494
assert_signer_is_signing_snapshot(&aggregator_endpoint, &digest, target_epoch - 2)
9595
.await?;
96+
9697
assert_is_creating_certificate_with_enough_signers(
9798
&aggregator_endpoint,
9899
&certificate_hash,

mithril-test-lab/mithril-end-to-end/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ pub struct Args {
3939
number_of_pool_nodes: u8,
4040

4141
/// Length of a Cardano slot in the devnet (in s)
42-
#[clap(long, default_value_t = 0.18)]
42+
#[clap(long, default_value_t = 0.08)]
4343
cardano_slot_length: f64,
4444

4545
/// Length of a Cardano epoch in the devnet (in s)

0 commit comments

Comments
 (0)