Skip to content

Commit 7e27202

Browse files
committed
Fix type.
1 parent 37dcf2f commit 7e27202

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

logging/test/sinks.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ describe('logging:sinks', function () {
117117
assert.equal(sample.mocks.sink.create.firstCall.args.length, 2, 'method received 2 arguments');
118118
assert.deepEqual(sample.mocks.sink.create.firstCall.args[0], {
119119
destination: sample.mocks.dataset
120-
}, 'add received options');
120+
}, 'method received options');
121121
assert(callback.calledOnce, 'callback called once');
122122
assert.equal(callback.firstCall.args.length, 2, 'callback received 2 arguments');
123123
assert.ifError(callback.firstCall.args[0], 'callback did not receive error');

0 commit comments

Comments
 (0)