diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2018-01-11 15:44:50 +0100 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2018-01-15 16:21:31 +0100 |
| commit | 928615a5a91ef4a3f52fbd4a6629e86993a1a3aa (patch) | |
| tree | d76821ad40b0d72f359051945b2d5c415c99fca2 /test/components/SelectLocation.spec.js | |
| parent | fc4178d7e3329fb1fd0014e4ce349a79eafeca51 (diff) | |
| download | mullvadvpn-928615a5a91ef4a3f52fbd4a6629e86993a1a3aa.tar.xz mullvadvpn-928615a5a91ef4a3f52fbd4a6629e86993a1a3aa.zip | |
Adapt frontend to removed ip call and changed location struct
Diffstat (limited to 'test/components/SelectLocation.spec.js')
| -rw-r--r-- | test/components/SelectLocation.spec.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/components/SelectLocation.spec.js b/test/components/SelectLocation.spec.js index 7ec17ff798..eb72b03c57 100644 --- a/test/components/SelectLocation.spec.js +++ b/test/components/SelectLocation.spec.js @@ -24,12 +24,14 @@ describe('components/SelectLocation', () => { cities: [{ name: 'Malmö', code: 'mma', - position: [0, 0], + latitude: 0, + longitude: 0, hasActiveRelays: true, }, { name: 'Stockholm', code: 'sto', - position: [0, 0], + latitude: 0, + longitude: 0, hasActiveRelays: true, }], }], |
