Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron Klish committed Apr 21, 2020
1 parent e36c5a6 commit a669980
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ private ExpressionResult evaluateUserChecks(Path path) {
return ExpressionResult.FAIL;
}

if (result == ExpressionResult.DEFERRED || result == ExpressionResult.FAIL) {
if (result != ExpressionResult.PASS) {
return result;
}
}
Expand Down

0 comments on commit a669980

Please sign in to comment.