summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/logout.spec.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/logout.spec.js b/test/logout.spec.js
index 9b44f83ca6..0e295aef9b 100644
--- a/test/logout.spec.js
+++ b/test/logout.spec.js
@@ -7,13 +7,13 @@ import accountActions from '../app/redux/account/actions';
describe('logging out', () => {
- it('should set the account to the empty string and then disconnect', (done) => {
+ it('should set the account to null and then disconnect', (done) => {
const { mockIpc, backend } = setupBackendAndStore();
const chain = new IpcChain(mockIpc);
chain.require('setAccount')
.withInputValidation((num) => {
- expect(num).to.equal('');
+ expect(num).to.be.null;
})
.done();
chain.require('disconnect')