We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04ab56e commit 53290f5Copy full SHA for 53290f5
1 file changed
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