Skip to content

Commit

Permalink
More NPE mess to deal with
Browse files Browse the repository at this point in the history
  • Loading branch information
brobert committed Jan 13, 2016
1 parent 453c9fc commit 86ddffa
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/test/java/com/adobe/ags/curly/test/ErrorBehaviorTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,8 @@ public Action failureAction() {

private void assertResults(RunnerResult result, boolean completelySuccessful, boolean completed) {
try {
result.completelySuccessful().get();
result.completed().get();
if (completelySuccessful) {
assertTrue(result.completelySuccessful().get());
} else {
Expand Down

0 comments on commit 86ddffa

Please sign in to comment.