Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed canUseEip1014AliasesForXfers and updateMaxAutoAssociationsWorks #9667

Merged
merged 6 commits into from
Nov 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ private HapiSpec canUseMirrorAliasesForNonContractXfers() {
}

@SuppressWarnings("java:S5669")
// @HapiTest This test is failing due to child records not being correct. Will be enabled once fixed.
@HapiTest
private HapiSpec canUseEip1014AliasesForXfers() {
final var partyCreation2 = "partyCreation2";
final var counterCreation2 = "counterCreation2";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -395,8 +395,7 @@ private HapiSpec updateWithEmptyKeyFails() {
.then(cryptoUpdate(TEST_ACCOUNT).key(UPD_KEY).hasPrecheck(INVALID_ADMIN_KEY));
}

// @HapiTest Wrong status! Expected EXISTING_AUTOMATIC_ASSOCIATIONS_EXCEED_GIVEN_LIMIT, was
// INVALID_TRANSACTION_BODY! recheck after ContractUpdateHandler.handle() implemented
@HapiTest
private HapiSpec updateMaxAutoAssociationsWorks() {
final int maxAllowedAssociations = 5000;
final int originalMax = 2;
Expand Down
Loading