Skip to content

Commit d153530

Browse files
ci: correct lint failure
1 parent 9149de4 commit d153530

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

test/docs.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,11 @@ var fakeBunyan = function() {
122122

123123
// For various docs.
124124
var fakeRequest = function() {
125+
var stream = require('stream');
126+
125127
return {
126128
get: function() {
127-
return new require('stream').PassThrough();
129+
return new stream.PassThrough();
128130
}
129131
};
130132
};

0 commit comments

Comments
 (0)