Skip to content

Commit

Permalink
Fix compile-time errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikedurbin authored and Andrew Woods committed Aug 13, 2014
1 parent b1d2eaa commit 6d6753b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
Expand Up @@ -17,7 +17,7 @@

import static org.fcrepo.auth.xacml.URIConstants.POLICY_URI_PREFIX;
import static org.fcrepo.auth.xacml.URIConstants.XACML_POLICY_PROPERTY;
import static org.fcrepo.kernel.utils.TestHelpers.setField;
import static org.fcrepo.http.commons.test.util.TestHelpers.setField;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotNull;
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/fcrepo/auth/xacml/PDPFactoryTest.java
Expand Up @@ -16,7 +16,7 @@
package org.fcrepo.auth.xacml;


import static org.fcrepo.kernel.utils.TestHelpers.setField;
import static org.fcrepo.http.commons.test.util.TestHelpers.setField;
import static org.hamcrest.CoreMatchers.instanceOf;
import static org.junit.Assert.assertThat;

Expand Down
Expand Up @@ -17,7 +17,7 @@

import static org.fcrepo.auth.common.FedoraAuthorizationDelegate.FEDORA_SERVLET_REQUEST;
import static org.fcrepo.auth.common.FedoraAuthorizationDelegate.FEDORA_USER_PRINCIPAL;
import static org.fcrepo.kernel.utils.TestHelpers.setField;
import static org.fcrepo.http.commons.test.util.TestHelpers.setField;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import static org.mockito.Matchers.any;
Expand Down
Expand Up @@ -15,7 +15,7 @@
*/
package org.fcrepo.auth.xacml;

import static org.fcrepo.kernel.utils.TestHelpers.setField;
import static org.fcrepo.http.commons.test.util.TestHelpers.setField;
import static org.junit.Assert.assertNotNull;
import static org.mockito.Matchers.any;
import static org.mockito.Matchers.anyString;
Expand Down
8 changes: 4 additions & 4 deletions src/test/resources/repository.json
Expand Up @@ -8,11 +8,11 @@
},
"storage" : {
"cacheName" : "FedoraRepository",
"cacheConfiguration" : "${fcrepo.infinispan.cache_configuration:config/infinispan/leveldb/infinispan.xml}",
"cacheConfiguration" : "${fcrepo.infinispan.cache_configuration:config/infinispan/leveldb-default/infinispan.xml}",
"binaryStorage" : {
"type" : "cache",
"dataCacheName" : "FedoraRepositoryBinaryData",
"metadataCacheName" : "FedoraRepositoryMetaData"
"type" : "file",
"directory" : "${fcrepo.binary-store-path:target/binaries}",
"minimumBinarySizeInBytes" : 4096
}
},
"security" : {
Expand Down

0 comments on commit 6d6753b

Please sign in to comment.