Fix #214 - added totalResults to the hash of valid dstu1 keywords
This commit is contained in:
parent
6139e498be
commit
bac4c4a2e9
|
@ -117,6 +117,7 @@ public class JsonParser extends BaseParser implements IParser {
|
|||
hashSetDstu1.add("id");
|
||||
hashSetDstu1.add("updated");
|
||||
hashSetDstu1.add("published");
|
||||
hashSetDstu1.add("totalResults");
|
||||
BUNDLE_TEXTNODE_CHILDREN_DSTU1 = Collections.unmodifiableSet(hashSetDstu1);
|
||||
|
||||
HashSet<String> hashSetDstu2 = new HashSet<String>();
|
||||
|
|
|
@ -1060,7 +1060,6 @@ public class JsonParserTest {
|
|||
|
||||
}
|
||||
|
||||
@Ignore
|
||||
@Test
|
||||
public void testTotalResultsInJsonBundle() {
|
||||
String json =
|
||||
|
|
Loading…
Reference in New Issue