diff options
| author | Oskar Nyberg <oskar@mullvad.net> | 2020-02-18 15:20:34 +0100 |
|---|---|---|
| committer | Oskar Nyberg <oskar@mullvad.net> | 2020-02-19 11:42:52 +0100 |
| commit | 824199e9286d62a245d2022ea187c0e603fe3c2f (patch) | |
| tree | 3cd80ef5575db1e4b40eacd146d07d408ef8b6ed | |
| parent | 582f180bc59f04d1f1fe14bdf8cefb5e8b53a737 (diff) | |
| download | mullvadvpn-824199e9286d62a245d2022ea187c0e603fe3c2f.tar.xz mullvadvpn-824199e9286d62a245d2022ea187c0e603fe3c2f.zip | |
Fix formatting not covered by linter before
| -rw-r--r-- | gui/test/account-data-cache.spec.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gui/test/account-data-cache.spec.ts b/gui/test/account-data-cache.spec.ts index c3ef53dc51..1395df448a 100644 --- a/gui/test/account-data-cache.spec.ts +++ b/gui/test/account-data-cache.spec.ts @@ -59,7 +59,10 @@ describe('IAccountData cache', () => { it('should update when fetch succeeds on the first attempt', async () => { const update = new Promise((resolve, reject) => { - const cache = new AccountDataCache((_) => Promise.resolve(dummyAccountData), () => resolve()); + const cache = new AccountDataCache( + (_) => Promise.resolve(dummyAccountData), + () => resolve(), + ); cache.fetch(dummyAccountToken, { onFinish: spy(), |
