fixed the testWritePatchByInstance return code based on fhir doc

This commit is contained in:
Alin 2018-07-09 16:23:04 +03:00
parent de701a6b7f
commit b182d4eca6
1 changed files with 1 additions and 1 deletions

View File

@ -1786,7 +1786,7 @@ public class AuthorizationInterceptorDstu2Test {
httpPost.setEntity(new StringEntity(input, ContentType.parse("application/json-patch+json")));
status = ourClient.execute(httpPost);
response = extractResponseAndClose(status);
assertEquals(204, status.getStatusLine().getStatusCode());
assertEquals(200, status.getStatusLine().getStatusCode());
assertTrue(ourHitMethod);
}