Skip to content

Commit

Permalink
fix compile
Browse files Browse the repository at this point in the history
  • Loading branch information
cgardens committed Feb 23, 2022
1 parent f8aeea5 commit b54bfc0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -342,9 +342,7 @@ public JobInfoRead syncConnection(final ConnectionIdRequestBody connectionIdRequ
standardSync,
sourceImageName,
destinationImageName,
standardSyncOperations,
sourceDef.getResourceRequirements(),
destinationDef.getResourceRequirements());
standardSyncOperations);

return jobConverter.getJobInfoRead(job);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -507,9 +507,7 @@ void testSyncConnection() throws JsonValidationException, IOException, ConfigNot
standardSync,
SOURCE_DOCKER_IMAGE,
DESTINATION_DOCKER_IMAGE,
operations,
null,
null))
operations))
.thenReturn(completedJob);
when(completedJob.getScope()).thenReturn("cat:12");
final JobConfig jobConfig = mock(JobConfig.class);
Expand All @@ -528,9 +526,7 @@ void testSyncConnection() throws JsonValidationException, IOException, ConfigNot
standardSync,
SOURCE_DOCKER_IMAGE,
DESTINATION_DOCKER_IMAGE,
operations,
null,
null);
operations);
}

@Test
Expand Down

0 comments on commit b54bfc0

Please sign in to comment.