diff options
author | Sergio BertolĂn <sbertolin@solidgear.es> | 2016-11-21 14:41:00 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2016-12-22 10:10:29 +0100 |
commit | 928f11336160ce9f25ad21e891169502b050a65c (patch) | |
tree | 77060ee1d295dfc68cc7f3821f638580aa9b32ad /build/integration/features/favorites.feature | |
parent | 86066028de3e05f1b521701f756a248233c91b0b (diff) | |
download | nextcloud-server-928f11336160ce9f25ad21e891169502b050a65c.tar.gz nextcloud-server-928f11336160ce9f25ad21e891169502b050a65c.zip |
Return explicit values instead of boolean from sabre (#26654)
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to 'build/integration/features/favorites.feature')
-rw-r--r-- | build/integration/features/favorites.feature | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/build/integration/features/favorites.feature b/build/integration/features/favorites.feature index 5e31e1902f8..88bbf81a934 100644 --- a/build/integration/features/favorites.feature +++ b/build/integration/features/favorites.feature @@ -19,7 +19,7 @@ Feature: favorite And user "user0" unfavorites element "/FOLDER" Then as "user0" gets properties of folder "/FOLDER" with |{http://owncloud.org/ns}favorite| - And the single response should contain a property "{http://owncloud.org/ns}favorite" with value "" + And the single response should contain a property "{http://owncloud.org/ns}favorite" with value "0" Scenario: Favorite a file Given using old dav path @@ -38,7 +38,7 @@ Feature: favorite And user "user0" unfavorites element "/textfile0.txt" Then as "user0" gets properties of file "/textfile0.txt" with |{http://owncloud.org/ns}favorite| - And the single response should contain a property "{http://owncloud.org/ns}favorite" with value "" + And the single response should contain a property "{http://owncloud.org/ns}favorite" with value "0" Scenario: Favorite a folder new endpoint Given using new dav path @@ -57,7 +57,7 @@ Feature: favorite And user "user0" unfavorites element "/FOLDER" Then as "user0" gets properties of folder "/FOLDER" with |{http://owncloud.org/ns}favorite| - And the single response should contain a property "{http://owncloud.org/ns}favorite" with value "" + And the single response should contain a property "{http://owncloud.org/ns}favorite" with value "0" Scenario: Favorite a file new endpoint Given using new dav path @@ -76,5 +76,5 @@ Feature: favorite And user "user0" unfavorites element "/textfile0.txt" Then as "user0" gets properties of file "/textfile0.txt" with |{http://owncloud.org/ns}favorite| - And the single response should contain a property "{http://owncloud.org/ns}favorite" with value "" + And the single response should contain a property "{http://owncloud.org/ns}favorite" with value "0" |