Skip to content

Commit

Permalink
Merge pull request #1667 from fedinskiy/fix/disable-precisely
Browse files Browse the repository at this point in the history
Enable a single test in JVM mode
  • Loading branch information
michalvavrik authored Feb 16, 2024
2 parents 342d611 + aa5a8e3 commit e2a330b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
import static io.restassured.RestAssured.given;

import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test;

import io.quarkus.test.scenarios.QuarkusScenario;
import io.quarkus.test.scenarios.annotations.DisabledOnNative;
import io.restassured.response.ResponseBodyExtractionOptions;

@Tag("QUARKUS-1554")
Expand All @@ -33,10 +33,10 @@ public void serializeList() {
}

@Test
@Disabled("https://github.com/quarkusio/quarkus/issues/22654")
@DisabledOnNative(reason = "https://github.com/quarkusio/quarkus/issues/22654")
public void serializeBigList() {
String basePath = "/hello/big-serialize-list?expSize=";
// Try couple of variations just to tease out possible edge cases
// Try a couple of variations just to tease out possible edge cases
mustBeMoreThanZero(makeQuery(basePath + (LONGEST_EAGER_ALLOC - SECOND_RANDOM_VARIATION)).jsonPath().getInt("size"));
mustBeMoreThanZero(makeQuery(basePath + (LONGEST_EAGER_ALLOC + FIRST_RANDOM_VARIATION)).jsonPath().getInt("size"));
mustBeMoreThanZero(makeQuery(basePath + (THIRD_RANDOM_VARIATION * LONGEST_EAGER_ALLOC - FIRST_RANDOM_VARIATION))
Expand Down

0 comments on commit e2a330b

Please sign in to comment.