From 53290f5107f753cbf82bec432534d48eb556cfbd Mon Sep 17 00:00:00 2001 From: aozarov Date: Wed, 17 Feb 2016 15:32:56 -0800 Subject: [PATCH] fix lint issue --- .../test/java/com/google/gcloud/datastore/DatastoreTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcloud-java-datastore/src/test/java/com/google/gcloud/datastore/DatastoreTest.java b/gcloud-java-datastore/src/test/java/com/google/gcloud/datastore/DatastoreTest.java index d8337e7ae865..a289610fe841 100644 --- a/gcloud-java-datastore/src/test/java/com/google/gcloud/datastore/DatastoreTest.java +++ b/gcloud-java-datastore/src/test/java/com/google/gcloud/datastore/DatastoreTest.java @@ -473,7 +473,7 @@ public void testQueryPaginationWithLimit() throws DatastoreException { .andReturn(rpcMock); List responses = buildResponsesForQueryPaginationWithLimit(); List endCursors = Lists.newArrayListWithCapacity(responses.size()); - for (RunQueryResponse response: responses) { + for (RunQueryResponse response : responses) { EasyMock.expect(rpcMock.runQuery(EasyMock.anyObject(RunQueryRequest.class))) .andReturn(response); if (response.getBatch().getMoreResults() != QueryResultBatch.MoreResultsType.NOT_FINISHED) {