We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 04ab56e + 53290f5 commit 7076ab6Copy full SHA for 7076ab6
gcloud-java-datastore/src/test/java/com/google/gcloud/datastore/DatastoreTest.java
@@ -473,7 +473,7 @@ public void testQueryPaginationWithLimit() throws DatastoreException {
473
.andReturn(rpcMock);
474
List<RunQueryResponse> responses = buildResponsesForQueryPaginationWithLimit();
475
List<ByteString> endCursors = Lists.newArrayListWithCapacity(responses.size());
476
- for (RunQueryResponse response: responses) {
+ for (RunQueryResponse response : responses) {
477
EasyMock.expect(rpcMock.runQuery(EasyMock.anyObject(RunQueryRequest.class)))
478
.andReturn(response);
479
if (response.getBatch().getMoreResults() != QueryResultBatch.MoreResultsType.NOT_FINISHED) {
0 commit comments