fix testing bugs
This commit is contained in:
parent
d35eba6b23
commit
ba27fc9da7
|
@ -361,13 +361,13 @@ public class NpmPackage {
|
|||
d = Utilities.path("package", d);
|
||||
}
|
||||
File ij = new File(Utilities.path(f.getAbsolutePath(), ".index.json"));
|
||||
if (ij.exists()) {
|
||||
if (ij.exists() || !minimalMemory) {
|
||||
NpmPackageFolder folder = this.new NpmPackageFolder(d);
|
||||
folder.folder = f;
|
||||
this.folders.put(d, folder);
|
||||
if (!minimalMemory) {
|
||||
try {
|
||||
if (!folder.readIndex(JsonParser.parseObject(ij), folder.getTypes())) {
|
||||
if (!ij.exists() || !folder.readIndex(JsonParser.parseObject(ij), folder.getTypes())) {
|
||||
indexFolder(folder.getFolderName(), folder);
|
||||
}
|
||||
} catch (Exception e) {
|
||||
|
|
|
@ -48,8 +48,8 @@ public class ExternalTerminologyServiceTests implements ITxTesterLoader {
|
|||
private JsonObject test;
|
||||
}
|
||||
|
||||
// private static final String SERVER = FhirSettings.getTxFhirDevelopment();
|
||||
private static final String SERVER = FhirSettings.getTxFhirLocal();
|
||||
private static final String SERVER = FhirSettings.getTxFhirDevelopment();
|
||||
// private static final String SERVER = FhirSettings.getTxFhirLocal();
|
||||
// private static final String SERVER = "https://r4.ontoserver.csiro.au/fhir";
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue