fix core package test

This commit is contained in:
Grahame Grieve 2022-03-17 21:43:25 +11:00
parent def7d5566a
commit 3c4440d430
1 changed files with 1 additions and 1 deletions

View File

@ -1086,7 +1086,7 @@ public class NpmPackage {
}
public boolean isCore() {
return "fhir.core".equals(JSONUtil.str(npm, "type"));
return Utilities.existsInList(JSONUtil.str(npm, "type"), "fhir.core", "Core");
}
public boolean hasCanonical(String url) {