public void testSparseShallowClone() throws Exception {
Map<String, String> filter = new HashMap<String, String>();
filter.put("default", "BBOX(pp,9, -80, 15, -70,'EPSG:4326')");
createFilterFile(filter);
CloneOp clone = clone();
clone.setDepth(3).setBranch("master");
exception.expect(IllegalStateException.class);
clone.setRepositoryURL(remoteGeogig.envHome.getCanonicalPath()).call();
}