Skip to content
This repository was archived by the owner on Jun 27, 2019. It is now read-only.

Commit 2f42d33

Browse files
fixed assets
1 parent 5317c97 commit 2f42d33

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/services/contributions.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ describe('\'contributions\' service', () => {
154154
it('returns one contribution', async () => {
155155
const result = await service.find({ query });
156156
assert.ok(result.data[0], 'returns data');
157-
assert.equal(result.data.length, 1), 'returns only one entry';
157+
assert.equal(result.data.length, 1, 'returns only one entry');
158158
});
159159

160160
it('populates associatedCanDos', async () => {

test/services/users.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ describe('\'users\' service', () => {
105105
it('returns one user', async () => {
106106
const result = await service.find({ query });
107107
assert.ok(result.data[0], 'returns data');
108-
assert.equal(result.data.length, 1), 'returns only one entry';
108+
assert.equal(result.data.length, 1, 'returns only one entry');
109109
});
110110

111111
it('populates badges, candos and userSettings', async () => {

0 commit comments

Comments
 (0)