summaryrefslogtreecommitdiffstats
path: root/core/js/tests
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-11-17 13:37:13 +0100
committerLukas Reschke <lukas@owncloud.com>2015-11-22 16:05:51 +0100
commitab1d786d879d519c86cd2016490d1ade5e43fd41 (patch)
treed01b0f4fda22fe10f0a007a776eec93e08bcfa3e /core/js/tests
parent240ae46265c9bae2b1943d34dfe7b708d06c247a (diff)
downloadnextcloud-server-ab1d786d879d519c86cd2016490d1ade5e43fd41.tar.gz
nextcloud-server-ab1d786d879d519c86cd2016490d1ade5e43fd41.zip
Fix port issue - options.host already has the port attached
Diffstat (limited to 'core/js/tests')
-rw-r--r--core/js/tests/specs/files/clientSpec.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/core/js/tests/specs/files/clientSpec.js b/core/js/tests/specs/files/clientSpec.js
index 67815d93f05..7d039b5143a 100644
--- a/core/js/tests/specs/files/clientSpec.js
+++ b/core/js/tests/specs/files/clientSpec.js
@@ -25,11 +25,10 @@ describe('OC.Files.Client tests', function() {
var client;
beforeEach(function() {
- baseUrl = 'https://testhost:999/owncloud/remote.php/webdav/';
+ baseUrl = 'https://testhost/owncloud/remote.php/webdav/';
client = new Client({
host: 'testhost',
- port: 999,
root: '/owncloud/remote.php/webdav',
useHTTPS: true
});