aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2016-09-27 12:35:55 +0200
committerGitHub <noreply@github.com>2016-09-27 12:35:55 +0200
commit3e843fcd82e4b9d419bb19da6c6646cf51991b60 (patch)
treef06db959f885475146ee6f8b70f0f8e1dfa9d6e8 /build
parent6a3e0f33b311e551c78d8fbf1bd8832676789168 (diff)
parenteb8886851fe7cae39bae14f6cdb571b8e8c38e2d (diff)
downloadnextcloud-server-3e843fcd82e4b9d419bb19da6c6646cf51991b60.tar.gz
nextcloud-server-3e843fcd82e4b9d419bb19da6c6646cf51991b60.zip
Merge pull request #1538 from nextcloud/fix-integration-test-to-use-a-valid-url
Fix integration test to use a valid URL
Diffstat (limited to 'build')
-rw-r--r--build/integration/features/provisioning-v1.feature5
1 files changed, 3 insertions, 2 deletions
diff --git a/build/integration/features/provisioning-v1.feature b/build/integration/features/provisioning-v1.feature
index 180108b5ccd..fba69cd6225 100644
--- a/build/integration/features/provisioning-v1.feature
+++ b/build/integration/features/provisioning-v1.feature
@@ -501,15 +501,16 @@ Feature: provisioning
Given As an "admin"
And user "user0" exists
And As an "user0"
- When sending "GET" to "/index.php/apps/files"
+ When sending "GET" to "/cloud/capabilities"
Then the HTTP status code should be "200"
+ And the OCS status code should be "100"
Scenario: Making a web request with a disabled user
Given As an "admin"
And user "user0" exists
And assure user "user0" is disabled
And As an "user0"
- When sending "GET" to "/index.php/apps/files"
+ When sending "GET" to "/cloud/capabilities"
Then the OCS status code should be "997"
And the HTTP status code should be "401"