Fixed small bug in validate test workflow
This commit is contained in:
parent
3c96e39a7b
commit
66097735a4
Binary file not shown.
|
@ -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());
|
||||
});
|
||||
|
|
|
@ -577,7 +577,7 @@ public final class WebAPITestContainer implements TestContainer {
|
|||
}
|
||||
|
||||
public boolean getHaveMetadataBeenRequested() {
|
||||
return false;
|
||||
return haveMetadataBeenRequested.get();
|
||||
}
|
||||
|
||||
public boolean getShowResponses() {
|
||||
|
|
Loading…
Reference in New Issue