Skip to content

Commit

Permalink
fix: propagate function renaming to integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sfauvel committed Sep 18, 2024
1 parent c7ce4e3 commit a135b26
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,14 +82,14 @@ async fn test_create_immutable_files_full_single_signature() {
.check_era_checker_last_updated_at(Epoch(4)).await.unwrap()

.comment("signer can now create a single signature → ReadyToSign")
.cycle_ready_to_sign_no_registration().await.unwrap()
.cycle_ready_to_sign_without_signature_registration().await.unwrap()
.check_protocol_initializer(Epoch(4)).await.unwrap()

.comment("signer signs a single signature = ReadyToSign")
.cycle_ready_to_sign_with_signature_registration().await.unwrap()

.comment("more cycles do not change the state = ReadyToSign")
.cycle_ready_to_sign_no_registration().await.unwrap()
.cycle_ready_to_sign_without_signature_registration().await.unwrap()

.comment("new immutable means a new signature with the same stake distribution → ReadyToSign")
.increase_immutable(1, 9).await.unwrap()
Expand All @@ -102,7 +102,7 @@ async fn test_create_immutable_files_full_single_signature() {
.comment("signer should be able to create a single signature → ReadyToSign")

.check_total_signature_registrations_metrics(2).unwrap()
.cycle_ready_to_sign_no_registration().await.unwrap()
.cycle_ready_to_sign_without_signature_registration().await.unwrap()
.cycle_ready_to_sign_with_signature_registration().await.unwrap()
.check_protocol_initializer(Epoch(5)).await.unwrap()

Expand Down

0 comments on commit a135b26

Please sign in to comment.