Skip to content

Commit

Permalink
chore: made test assert wrongly to check workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-rm-meyer-ISST committed Oct 2, 2024
1 parent acd3961 commit fe3303f
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
import java.util.regex.Pattern;

import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.mockito.Mockito.when;

public class EdcAdapterServiceTest {
Expand Down Expand Up @@ -135,7 +134,7 @@ public void correctConstraints_testContractPolicyConstraints_succeed() throws Js
// then
boolean result = edcAdapterService.testContractPolicyConstraints(validJsonNode);

assertTrue(result);
assertFalse(result);
}

/**
Expand Down

0 comments on commit fe3303f

Please sign in to comment.