expect test ignored properties

This commit is contained in:
Adrian Cole 2012-07-24 22:17:23 -07:00
parent 416a795796
commit cab271d30f
1 changed files with 1 additions and 1 deletions

View File

@ -559,7 +559,7 @@ public abstract class BaseRestApiExpectTest<S> {
// isolate tests from eachother, as default credentialStore is static // isolate tests from eachother, as default credentialStore is static
return builder.credentials(identity, credential).modules( return builder.credentials(identity, credential).modules(
ImmutableSet.of(new ExpectModule(fn), new NullLoggingModule(), new CredentialStoreModule(new CopyInputStreamInputSupplierMap( ImmutableSet.of(new ExpectModule(fn), new NullLoggingModule(), new CredentialStoreModule(new CopyInputStreamInputSupplierMap(
new ConcurrentHashMap<String, InputSupplier<InputStream>>())), module)).overrides(setupProperties()) new ConcurrentHashMap<String, InputSupplier<InputStream>>())), module)).overrides(props)
.buildInjector(); .buildInjector();
} }