Skip to content

Commit

Permalink
Fixed incorrect assertion. (Id is not required)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bart Mehlkop committed May 10, 2016
1 parent 2131b6b commit 1b07cf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kickass-test/KickassKoppeltaalConnector.js
Expand Up @@ -64,7 +64,7 @@ var Koppeltaal = Koppeltaal || {};
try {
info = ranj.KickassKoppeltaalMessageInfo.getCarePlanInfo(message);
console.log("_processCarePlanMessage care plan " + JSON.stringify(info, null, '\t'));
this._validateNotFalsy(info.id, "no care plan id");
//this._validateNotFalsy(info.id, "no care plan id");
//this._validateNotFalsy(info.reference, "no care plan reference");
this._validateNotFalsy(info.patient.reference, "no care plan patient reference");
this._validateEquals(info.patient.reference, this._client.authorization.patient, "care plan patient does not match authorization patient");
Expand Down

0 comments on commit 1b07cf5

Please sign in to comment.