From e1cc04c604e44cb6cdf30f7286115ea87b15fa33 Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Thu, 27 Aug 2020 13:39:30 +0545 Subject: [PATCH] Also use new dav-path for empty-trashbin local scenarios --- .../apiOcisSpecific/apiTrashbin-trashbinDelete.feature | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/tests/acceptance/features/apiOcisSpecific/apiTrashbin-trashbinDelete.feature b/tests/acceptance/features/apiOcisSpecific/apiTrashbin-trashbinDelete.feature index 697c8787c..c63c4f5f6 100644 --- a/tests/acceptance/features/apiOcisSpecific/apiTrashbin-trashbinDelete.feature +++ b/tests/acceptance/features/apiOcisSpecific/apiTrashbin-trashbinDelete.feature @@ -22,7 +22,7 @@ Feature: files and folders can be deleted from the trashbin # because of @issue-product-178 we cannot perform this test using new dav, so only old dav is being used Given user "Alice" has uploaded file with content "file with comma" to "sample,0.txt" And user "Alice" has uploaded file with content "file with comma" to "sample,1.txt" - And using old DAV path + And using DAV path And user "Alice" has deleted file "" And user "Alice" has deleted file "" And as "Alice" file "" should exist in the trashbin @@ -31,9 +31,11 @@ Feature: files and folders can be deleted from the trashbin Then as "Alice" the file with original path "" should exist in the trashbin And as "Alice" the file with original path "" should exist in the trashbin Examples: - | filename1 | filename2 | - | textfile0.txt | textfile1.txt | - | sample,0.txt | sample,1.txt | + | dav-path | filename1 | filename2 | + | old | textfile0.txt | textfile1.txt | + | old | sample,0.txt | sample,1.txt | + | new | textfile0.txt | textfile1.txt | + | new | sample,0.txt | sample,1.txt | @smokeTest @issue-ocis-reva-118