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

fix: HIP-904 Additional e2e test cases where receiver contract and already associated #16399

Merged
merged 16 commits into from
Nov 21, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix: disable negative test for airdrops to contracts
Signed-off-by: Stanimir Stoyanov <stanimir.stoyanov@limechain.tech>
  • Loading branch information
stoyanov-st committed Nov 18, 2024
commit 67c3f2234b602017497885760fac0c60d00530c5
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
import java.util.concurrent.atomic.AtomicLong;
import java.util.stream.Stream;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.DynamicTest;

Expand Down Expand Up @@ -88,7 +89,7 @@ static void beforeAll(@NonNull final TestLifecycle lifecycle) {
"entities.unlimitedAutoAssociationsEnabled", "true"));
}

@HapiTest
@Disabled
@DisplayName("require a receiver contract to have a cryptographic admin key")
final Stream<DynamicTest> contractMustHaveCryptoAdminKey(
@Contract(contract = "Multipurpose", isImmutable = true) SpecContract immutableContract,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@
import java.util.stream.Stream;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.DynamicTest;
import org.junit.jupiter.api.MethodOrderer;
Expand Down Expand Up @@ -2134,7 +2135,7 @@ final Stream<DynamicTest> tokenWithThreeLayersOfCustomFees() {
.hasKnownStatus(CUSTOM_FEE_CHARGING_EXCEEDED_MAX_RECURSION_DEPTH));
}

@HapiTest
@Disabled
@DisplayName("airdrop to contract without admin key")
final Stream<DynamicTest> airdropToContractWithoutAdminKey() {
final var testContract = "ToyMaker";
Expand Down
Loading