Skip to content

Commit

Permalink
fix(mysql): fix test not to expect path
Browse files Browse the repository at this point in the history
  • Loading branch information
Shadowbeetle committed Dec 12, 2016
1 parent 320d053 commit 01599d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/instrumentations/mysql/mysql.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ describe('The mysql wrapper', function () {

// This is tricky. We have to stub exactly after wrapping, and before
// createConnection to catch the wrapping of the query operation
var shimmerWrapStub = sandbox.stub(Shimmer, 'wrap', function (nodule, path, name, cb) {
var shimmerWrapStub = sandbox.stub(Shimmer, 'wrap', function (nodule, name, cb) {
expect(name).to.eql(CONNECTION_OPERATIONS)
nodule.connect(function (err) {
if (err) {
Expand Down

0 comments on commit 01599d8

Please sign in to comment.