Skip to content
This repository has been archived by the owner on Jul 23, 2024. It is now read-only.

Commit

Permalink
Remove @disable annotations
Browse files Browse the repository at this point in the history
Signed-off-by: Gloria Ciavarrini <[email protected]>
  • Loading branch information
gciavarrini authored and openshift-merge-robot committed Aug 9, 2023
1 parent 4c13f77 commit 4fa90e2
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;

@Disabled
public class GetApplicationTaskTest {

GetApplicationTask underTest;
Expand Down Expand Up @@ -64,7 +63,6 @@ public void missingMandatoryParams() {

@Test
@SneakyThrows
@Disabled // FIXME
public void failsGettingAppNotFound() {
when(mockClient.get(anyString())).thenReturn(new Result.Failure<>(new Exception("not found")));
ctx.put("applicationName", APP_NAME);
Expand All @@ -81,8 +79,6 @@ public void failsGettingAppNotFound() {

@Test
@SneakyThrows
@Disabled
// FIXME
public void getByName() {
when(mockClient.get(anyString())).thenReturn(
new Result.Success<>(new App(APP_ID, APP_NAME, new Repository("git", REPO_URL, REPO_BRANCH), null)));
Expand Down

0 comments on commit 4fa90e2

Please sign in to comment.