Fixed small bug in validate test workflow

This commit is contained in:
Joshua Darnell 2020-04-13 03:28:58 -07:00
parent 3c96e39a7b
commit 66097735a4
3 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@ -94,8 +94,8 @@ public class WebAPIServer_1_0_2 implements En {
if (!getTestContainer().getHaveMetadataBeenRequested()) {
//will lazy-load metadata from the server if not yet requested
getTestContainer().getXMLMetadata();
getTestContainer().validateMetadata();
}
getTestContainer().validateMetadata();
assertTrue("XML Metadata at the given service root is not valid! " + getTestContainer().getServiceRoot(),
getTestContainer().getIsValidXMLMetadata());
});

View File

@ -577,7 +577,7 @@ public final class WebAPITestContainer implements TestContainer {
}
public boolean getHaveMetadataBeenRequested() {
return false;
return haveMetadataBeenRequested.get();
}
public boolean getShowResponses() {