Skip to content

Commit f67d6e3

Browse files
committed
Don't use arrow function in browser test
1 parent 625658f commit f67d6e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/browser/types.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ var test = require('tape');
22
var util = require('../../');
33

44
test('util.types', function (t) {
5-
t.doesNotThrow(() => require('../node/types'));
5+
t.doesNotThrow(function () { return require('../node/types') });
66
t.end();
77
});

0 commit comments

Comments
 (0)