Skip to content

Commit

Permalink
Fixing #-of-resources failures.
Browse files Browse the repository at this point in the history
  • Loading branch information
mederly committed Dec 12, 2014
1 parent d1420dd commit 9ee38d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Expand Up @@ -141,7 +141,7 @@ public void test110SearchResources() throws Exception {
// THEN
assertNotNull("null search return", resources);
assertFalse("Empty search return", resources.isEmpty());
assertEquals("Unexpected number of resources found", 9, resources.size());
assertEquals("Unexpected number of resources found", 10, resources.size());

result.computeStatus();
TestUtil.assertSuccess("searchObjects result", result);
Expand Down Expand Up @@ -186,7 +186,7 @@ public boolean handle(PrismObject<ResourceType> resource, OperationResult parent
TestUtil.assertSuccess("searchObjects result", result);

assertFalse("Empty search return", resources.isEmpty());
assertEquals("Unexpected number of resources found", 9, resources.size());
assertEquals("Unexpected number of resources found", 10, resources.size());

assertSteadyResources();
}
Expand Down
Expand Up @@ -187,7 +187,7 @@ public void test205SearchForResources() throws Exception {
IntegrationTestTools.display("output", output.getData());
result.computeStatus();
TestUtil.assertSuccess(result);
assertEquals(9, output.getData().size());
assertEquals(10, output.getData().size());
}

@Test
Expand Down

0 comments on commit 9ee38d9

Please sign in to comment.