Skip to content
This repository has been archived by the owner on Nov 20, 2019. It is now read-only.

Commit

Permalink
Test fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
mafernandez-stratio committed Dec 4, 2014
1 parent 69673f1 commit 4ffd894
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,9 @@ public void attachUnknownClusterWithOptionsIfExists() {
fail("Execution should have failed because comment options is not in the manifest");
} catch (ValidationException e) {
String errorMsg = System.lineSeparator() +
"Expected: Some properties are not found in the datastore manifest" + System.lineSeparator() +
"Expected: Some properties are not found in the manifest" + System.lineSeparator() +
" Found: " + e.getMessage().trim();
assertTrue(e.getMessage().trim().equalsIgnoreCase("Some properties are not found in the datastore manifest"), errorMsg);
assertTrue(e.getMessage().trim().equalsIgnoreCase("Some properties are not found in the manifest"), errorMsg);
} catch (IgnoreQueryException e) {
fail(e.getMessage());
}
Expand Down

0 comments on commit 4ffd894

Please sign in to comment.