> @@ -42,6 +42,18 @@ public void testGetApiMetaData() { > assertEquals(metadata, new ParseRackspaceApiMetadataTest().expected()); > } > > + public void testGetApiMetaDataWithTokenCredentialsAuth() { > + KeystoneApi api = requestsSendResponses( > + keystoneAuthWithTokenAndTenantName, responseWithKeystoneAccess, > + HttpRequest.builder().method("GET").endpoint(endpoint + > "/v2.0/"). > + addHeader("Accept", APPLICATION_JSON).build(), > + HttpResponse.builder().statusCode(200). > + > payload(payloadFromResourceWithContentType("/raxVersion.json", > APPLICATION_JSON)).build());
This line would have to change from `/raxVersion.json` to `/keystoneAuthResponse.json` based on my comment on line 54 below. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/433/files#r16725202