Skip to content

Commit

Permalink
fix(client-test): remove unneeded send parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
mbroadst committed Jun 26, 2015
1 parent 64f2e8c commit 43609fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/qpid/client.test.js
Expand Up @@ -35,7 +35,7 @@ describe('Client', function() {
return test.client.createSender(config.defaultLink);
})
.then(function(senderLink) {
return senderLink.send('test', config.defaultLink);
return senderLink.send('test');
})
.catch(function(err) {
expect(err).to.not.exist;
Expand Down

0 comments on commit 43609fd

Please sign in to comment.