Skip to content

Commit a740c8f

Browse files
committed
Make lint happy.
1 parent d326b8b commit a740c8f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pubsub/system-test/subscriptions.test.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,11 +117,10 @@ describe(`pubsub:subscriptions`, () => {
117117
const subscriptions = require('../subscriptions');
118118
const expected = `Hello, world!`;
119119
const publishedMessageIds = [];
120-
let firstMessageIds, secondMessageIds, thirdMessageIds;
121120

122121
async.waterfall([
123122
(cb) => {
124-
pubsub.topic(topicName).publish({ data: expected, attributes: { counterId: '3' } }, cb)
123+
pubsub.topic(topicName).publish({ data: expected, attributes: { counterId: '3' } }, cb);
125124
},
126125
(messageIds, apiResponse, cb) => {
127126
publishedMessageIds.push(messageIds[0]);

0 commit comments

Comments
 (0)