Skip to content

Commit

Permalink
fixing integration test to expect correct status code
Browse files Browse the repository at this point in the history
  • Loading branch information
shoeffner committed Nov 8, 2016
1 parent ee9f162 commit 5fb290d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public void t_checkInvalidUser() {
Assert.assertNull(apiUserNew.email);

invalidApiUser = APIUserFactory.createAPIUser().setEmail(null);
apiUserNew = getUserExists(invalidApiUser, HttpStatus.SC_INTERNAL_SERVER_ERROR);
apiUserNew = getUserExists(invalidApiUser, HttpStatus.SC_NOT_FOUND);
Assert.assertNull(apiUserNew.email);
}

Expand Down

0 comments on commit 5fb290d

Please sign in to comment.