Skip to content

Commit 01599d8

Browse files
committed
fix(mysql): fix test not to expect path
1 parent 320d053 commit 01599d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/instrumentations/mysql/mysql.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ describe('The mysql wrapper', function () {
132132

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

0 commit comments

Comments
 (0)