Skip to content

Commit

Permalink
use @disabled not @ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
spbolton committed Jun 3, 2024
1 parent 29c1938 commit 7694121
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
import jakarta.ws.rs.NotFoundException;
import jakarta.ws.rs.WebApplicationException;
import org.jboss.resteasy.specimpl.BuiltResponse;
import org.junit.Ignore;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

@QuarkusTest
Expand Down Expand Up @@ -41,7 +41,7 @@ void Test_UnWrap_RuntimeException(){
* Expected Results: whatever noisy message that comes in must make it back clean
*/
@Test
@Ignore("Fix tests for Quarkus upgrade class cast BuiltResponse not returned ResponseImpl is")
@Disabled("Fix tests for Quarkus upgrade class cast BuiltResponse not returned ResponseImpl is")
void Test_Handle_WebApplication_Exception() {

NotFoundException noise = new NotFoundException("No pineapple Flavor today");
Expand Down

0 comments on commit 7694121

Please sign in to comment.