Skip to content

Commit 53b157b

Browse files
authored
Merge pull request #3611 from tsachiherman/tsachi/rollbackParticipationExpirationTest
## Summary The state proof branch contained a change to `testExpirationAccounts`, changing the `partKeyValidityPeriod` from 10 to 150. This increase the duration of the test substantially, and (apparently) also causing the test to fail. This PR rolls back that change. ## Test Plan This is a test.
2 parents 3f34164 + 64bd947 commit 53b157b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/e2e-go/features/participation/participationExpiration_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ func testExpirationAccounts(t *testing.T, fixture *fixtures.RestClientFixture, f
7676
_, currentRound := fixture.GetBalanceAndRound(richAccount)
7777
// account adds part key
7878
partKeyFirstValid := uint64(0)
79-
partKeyValidityPeriod := uint64(150) // TODO: maybe increase?
79+
partKeyValidityPeriod := uint64(10)
8080
partKeyLastValid = currentRound + partKeyValidityPeriod
8181
partkeyResponse, _, err := sClient.GenParticipationKeys(sAccount, partKeyFirstValid, partKeyLastValid, 0)
8282
a.NoError(err)

0 commit comments

Comments
 (0)