Skip to content

Commit

Permalink
Make lint happy.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmdobry committed Sep 28, 2016
1 parent d326b8b commit a740c8f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pubsub/system-test/subscriptions.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,11 +117,10 @@ describe(`pubsub:subscriptions`, () => {
const subscriptions = require('../subscriptions');
const expected = `Hello, world!`;
const publishedMessageIds = [];
let firstMessageIds, secondMessageIds, thirdMessageIds;

async.waterfall([
(cb) => {
pubsub.topic(topicName).publish({ data: expected, attributes: { counterId: '3' } }, cb)
pubsub.topic(topicName).publish({ data: expected, attributes: { counterId: '3' } }, cb);
},
(messageIds, apiResponse, cb) => {
publishedMessageIds.push(messageIds[0]);
Expand Down

0 comments on commit a740c8f

Please sign in to comment.