Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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