summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@mullvad.net>2017-11-23 16:09:21 +0100
committerAndrej Mihajlov <and@mullvad.net>2017-12-05 13:13:03 +0100
commita09bd1a77a0962b2b223b7c41570daf9def4fd85 (patch)
tree3b3065dfe650b9ba672859f201d161496efdcd95 /test
parent3369b58e5eb5c636a7945c8a8c3d4eb14bbbe29a (diff)
downloadmullvadvpn-a09bd1a77a0962b2b223b7c41570daf9def4fd85.tar.xz
mullvadvpn-a09bd1a77a0962b2b223b7c41570daf9def4fd85.zip
Remove unused connection.serverAddress
Diffstat (limited to 'test')
-rw-r--r--test/components/Connect.spec.js1
-rw-r--r--test/connect.spec.js1
2 files changed, 0 insertions, 2 deletions
diff --git a/test/components/Connect.spec.js b/test/components/Connect.spec.js
index d672aa77d6..c3a5ad5f65 100644
--- a/test/components/Connect.spec.js
+++ b/test/components/Connect.spec.js
@@ -170,7 +170,6 @@ const defaultServer = {
const defaultConnection = {
status: 'disconnected',
isOnline: true,
- serverAddress: null,
clientIp: null,
location: null,
country: null,
diff --git a/test/connect.spec.js b/test/connect.spec.js
index a7f991ec50..6e9eb2e493 100644
--- a/test/connect.spec.js
+++ b/test/connect.spec.js
@@ -56,7 +56,6 @@ describe('connect', () => {
.then( () => {
const state = store.getState().connection;
expect(state.status).to.equal('connecting');
- expect(state.serverAddress).to.equal('www.example.com');
});
});