> + LoadingCache<Credentials, Access> cache =
> createMock(LoadingCache.class);
> +
> + expect(command.getCurrentRequest()).andReturn(request).anyTimes();
> + expect(request.getHeaders()).andStubReturn(null);
> +
> + cache.invalidateAll();
> + expectLastCall().anyTimes();
> +
> +
> expect(response.getPayload()).andReturn(Payloads.newStringPayload("")).anyTimes();
> + expect(response.getStatusCode()).andReturn(401).anyTimes();
> +
> + replay(command, request, response, cache);
> +
> + RetryOnRenew retry = new RetryOnRenew(cache);
> +
> + for(int n=0; n<4; n++)
Add some whitespace between = and <.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/104/files#r6357355