Update test to reflect changes in last commit

This commit is contained in:
Christopher Eykamp
2013-01-02 12:51:52 +01:00
parent 15138605c3
commit 008c7d582e
2 changed files with 12 additions and 12 deletions

View File

@@ -67,13 +67,13 @@ OpenLayers.Format.WCSCapabilities.v1_1_0 = OpenLayers.Class(
request.contentMetadata = [];
this.readChildNodes(node, request.contentMetadata);
},
"CoverageSummary": function(node, contents) {
"CoverageSummary": function(node, contentMetadata) {
var coverageSummary = {};
// Read the summary:
this.readChildNodes(node, coverageSummary);
// Add it to the contents array:
contents.push(coverageSummary);
// Add it to the contentMetadata array:
contentMetadata.push(coverageSummary);
},
"Identifier": function(node, coverageSummary) {
coverageSummary.identifier = this.getChildValue(node);