.withType(ActionFactory.LOAD_SESSION)
.withArguments(
new ImmutableMap.Builder<String, Object>().put(Constants.SESSION_ID,
0L).build()));
other.getOperations().add(new Operation().withId("2").withType(ActionFactory.GET_KEYSPACE));
Response second = service.doRequest(other);
TestUtils.assertResponseDidNotFail(second);
List<Map> results = (List<Map>) second.getResults().get("2");
Assert.assertEquals(keyspaceName, results.get(0).get("keyspace"));
}
}