summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/login.spec.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/login.spec.js b/test/login.spec.js
index f220eb25a7..950205804c 100644
--- a/test/login.spec.js
+++ b/test/login.spec.js
@@ -49,7 +49,7 @@ describe('Logging in', () => {
it('should indicate failure for non-existing accounts', (done) => {
const { store, mockIpc, backend } = setupBackendAndStore();
- mockIpc.getAccountData = (_num) => new Promise((_,reject) => {
+ mockIpc.getAccountData = (_num) => new Promise((_, reject) => {
reject('NO SUCH ACCOUNT');
});