Skip to content

Commit

Permalink
Merge pull request #650 from aozarov/master
Browse files Browse the repository at this point in the history
fix lint issue
  • Loading branch information
ajkannan committed Feb 18, 2016
2 parents 04ab56e + 53290f5 commit 7076ab6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ public void testQueryPaginationWithLimit() throws DatastoreException {
.andReturn(rpcMock);
List<RunQueryResponse> responses = buildResponsesForQueryPaginationWithLimit();
List<ByteString> 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) {
Expand Down

0 comments on commit 7076ab6

Please sign in to comment.