Skip to content

Commit 343e6ce

Browse files
authored
tests: disable fetching all operations
1 parent 7462000 commit 343e6ce

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/test/java/com/cloudconvert/test/integration/TasksIntegrationTest.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -422,8 +422,9 @@ public void watermarkFileTaskLifecycle() throws Exception {
422422
@Test(timeout = TIMEOUT)
423423
public void listTasksLifecycle() throws Exception {
424424
// List operations
425-
final Result<Pageable<OperationResponse>> operationResponsePageable = cloudConvertClient.tasks().operations();
426-
assertThat(operationResponsePageable.getStatus().getCode()).isEqualTo(HttpStatus.SC_OK);
425+
// Currently disabled because they are some unsupported operations
426+
//final Result<Pageable<OperationResponse>> operationResponsePageable = cloudConvertClient.tasks().operations();
427+
//assertThat(operationResponsePageable.getStatus().getCode()).isEqualTo(HttpStatus.SC_OK);
427428

428429
// List tasks
429430
final Result<Pageable<TaskResponse>> taskResponsePageable = cloudConvertClient.tasks().list(ImmutableMap.of(), ImmutableList.of(), new Pagination(100, 1));

0 commit comments

Comments
 (0)