Skip to content

Commit

Permalink
Remove useless exception
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsbasjes committed Jul 14, 2017
1 parent 9a11483 commit 0af1a92
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -183,7 +183,7 @@ private void checkResult(Tuple data, Schema schema, String fieldName, String val
assertEquals("Field named "+fieldName +" should be \""+value+"\".", value, data.get(position));
}

private void checkAbsent(Schema schema, String fieldName) throws FrontendException, ExecException {
private void checkAbsent(Schema schema, String fieldName) throws FrontendException {
assertEquals("Field named "+fieldName +" is present in the schema", schema.getField(fieldName), null);
}

Expand Down

0 comments on commit 0af1a92

Please sign in to comment.