Skip to content

Commit e578a44

Browse files
committed
Add cosmetic fixes
1 parent 0d43045 commit e578a44

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: test/discourse.test.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import DiscourseClient from '../src/discourse.js';
1+
import Discourse from '../src/discourse.js';
22
import mockForge from 'node-forge';
33

44
let client;
@@ -21,20 +21,20 @@ jest.mock('axios', () => {
2121
common: []
2222
}
2323
}
24-
}
24+
};
2525
},
2626
defaults: {
2727
adapter: undefined,
2828
headers: {
2929
common: []
3030
}
3131
}
32-
}
32+
};
3333
});
3434

3535
describe('Given an instance of Discourse client', () => {
3636
beforeAll(() => {
37-
client = new DiscourseClient({
37+
client = new Discourse({
3838
appName: 'App name',
3939
apiBaseUrl: 'https://example.com',
4040
scopes: ['write']

0 commit comments

Comments
 (0)