You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@jclouds.apache.org by Вальо <no...@github.com> on 2016/05/03 09:43:11 UTC

Re: [jclouds/jclouds-labs-google] Implementation of password setting for windows (#170)

> @@ -73,7 +76,9 @@ public BaseGoogleComputeEngineApiLiveTest() {
>     }
>  
>     @Override protected GoogleComputeEngineApi create(Properties props, Iterable<Module> modules) {
> -      Injector injector = newBuilder().modules(modules).overrides(props).buildInjector();
> +      // BouncyCastleCrypto required for ResetWindowsPassword related tests
> +      injector = newBuilder().modules(ImmutableSet.<Module>builder().addAll(modules).add(new BouncyCastleCryptoModule()).build())

@andreaturli what do you think about adding `BouncyCastleCryptoModule` here?
Do you have an idea how I can subclass it directly in the `InstanceApiWindowsLiveTest`

---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/170/files/95945057ade457d2540d484c66fa2b75702fe835#r61847303