Skip to content

Commit

Permalink
Remove workaround for Quarkus #35104 (#7315)
Browse files Browse the repository at this point in the history
This commit removes the workaround introduced in
#7308.

The workaround is not required anymore, now that
this issue has been fixed:

quarkusio/quarkus#35104
  • Loading branch information
adutra authored Aug 4, 2023
1 parent 2bfbf9c commit 2831276
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@

import io.quarkus.test.junit.QuarkusTest;
import io.quarkus.test.junit.TestProfile;
import org.junit.jupiter.api.Nested;
import org.projectnessie.jaxrs.tests.BaseTestNessieRest;
import org.projectnessie.quarkus.tests.profiles.QuarkusTestProfileInmemory;

@QuarkusTest
Expand All @@ -29,8 +27,4 @@ class TestQuarkusRestInMemory extends AbstractQuarkusRestWithMetrics {
protected boolean isNewModel() {
return false;
}

// See https://github.com/quarkusio/quarkus/issues/35104
@Nested
class RelativeReferences extends BaseTestNessieRest.RelativeReferences {}
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@

import io.quarkus.test.junit.QuarkusTest;
import io.quarkus.test.junit.TestProfile;
import org.junit.jupiter.api.Nested;
import org.projectnessie.client.ext.NessieApiVersions;
import org.projectnessie.jaxrs.tests.BaseTestNessieRest;
import org.projectnessie.quarkus.tests.profiles.QuarkusTestProfilePersistInmemory;

@QuarkusTest
Expand All @@ -36,8 +34,4 @@ protected boolean fullPagingSupport() {
protected boolean isNewModel() {
return true;
}

// See https://github.com/quarkusio/quarkus/issues/35104
@Nested
class RelativeReferences extends BaseTestNessieRest.RelativeReferences {}
}

0 comments on commit 2831276

Please sign in to comment.