Skip to content

Commit

Permalink
#39 - Removed unnecessary check from MarathonDeployerTest.
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Jahreiß committed Oct 21, 2016
1 parent b2f9179 commit 4aa2346
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,7 @@ public void testDeploy() throws Exception {

// Verify resources were called correctly
verify(environmentConfig, times(1)).getStrategy();
verify(marathonResourceConfigFactory, times(1)).createConfigs(any());
verify(marathonResourceConfigFactory, times(1)).createConfigs(files);
verify(marathonResourceFactory, times(1)).createResources(any());
verify(marathonResourceFactory, times(1)).createResources(configs);
verify(resource1, times(1)).exists();
verify(resource2, times(1)).exists();
Expand All @@ -112,9 +110,7 @@ public void testDelete() throws Exception {

// Verify resources were called correctly
verify(environmentConfig, times(1)).getStrategy();
verify(marathonResourceConfigFactory, times(1)).createConfigs(any());
verify(marathonResourceConfigFactory, times(1)).createConfigs(files);
verify(marathonResourceFactory, times(1)).createResources(any());
verify(marathonResourceFactory, times(1)).createResources(configs);
verify(resource1, times(1)).exists();
verify(resource2, times(1)).exists();
Expand Down

0 comments on commit 4aa2346

Please sign in to comment.