Skip to content

Commit

Permalink
fix(disposition-tests): remove superfluous address in send
Browse files Browse the repository at this point in the history
  • Loading branch information
mbroadst committed Jul 11, 2015
1 parent bc90311 commit cc51396
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/integration/qpid/disposition.test.js
Expand Up @@ -48,8 +48,8 @@ describe('Disposition', function() {
});

return Promise.all([
sender.send('first message', queueName),
sender.send('second message', queueName)
sender.send('first message'),
sender.send('second message')
]);
});
});
Expand Down Expand Up @@ -93,8 +93,8 @@ describe('Disposition', function() {
});

return Promise.all([
sender.send('first message', queueName),
sender.send('second message', queueName)
sender.send('first message'),
sender.send('second message')
]);
});
});
Expand Down

0 comments on commit cc51396

Please sign in to comment.