Skip to content

Commit 0adaa65

Browse files
committed
test(exports): fix linter error on exports tests
1 parent b188260 commit 0adaa65

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/exports_tests.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ const chai = require('chai');
44
const expect = chai.expect;
55
const api = require('../index');
66

7-
describe('module', function () {
8-
it('should export version', function () {
7+
describe('module', function() {
8+
it('should export version', function() {
99
expect(api.version).to.be.a('string');
1010
expect(api.version).to.match(/\d+\.\d+/);
1111
});
1212

13-
it('should export flags and ids', function () {
13+
it('should export flags and ids', function() {
1414
[
1515
api.GSS_C_DELEG_FLAG,
1616
api.GSS_C_MUTUAL_FLAG,
@@ -27,7 +27,7 @@ describe('module', function () {
2727
].forEach(flag => expect(flag).to.be.a('number'));
2828
});
2929

30-
it('should export functions', function () {
30+
it('should export functions', function() {
3131
expect(api.initializeClient).to.be.a('function');
3232
expect(api.initializeServer).to.be.a('function');
3333
expect(api.principalDetails).to.be.a('function');
@@ -37,4 +37,4 @@ describe('module', function () {
3737
it('should export Kerberos', () => {
3838
expect(api.Kerberos).to.be.an('object');
3939
});
40-
});
40+
});

0 commit comments

Comments
 (0)