Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit 9b8ffb9

Browse files
committed
Fix log unit test
1 parent 2f77a1b commit 9b8ffb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/unit/action/log.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ describe('Action Logs Unit Tests', () => {
9494
log.error('foo', err);
9595
expect(console.error, 'was called with', 'foo', err);
9696
sandbox.restore();
97-
expect(store.logs.length, 'to equal', 3);
97+
expect(store.logs.length, 'to equal', 4);
9898
expect(ipcRenderer.send, 'was called with', 'log-error', ['foo', err]);
9999
});
100100
});

0 commit comments

Comments
 (0)