remove unused index paramater

Signed-off-by: prashant-gurung899 <prasantgrg777@gmail.com>
This commit is contained in:
prashant-gurung899
2024-06-27 15:43:28 +05:45
parent 5f03a566ee
commit 263a3dc4e2
5 changed files with 32 additions and 22 deletions
@@ -60,7 +60,10 @@ Feature: Download file in project space
| Brian |
Scenario: user with role viewer cannot get the old version of the file in the project space
Scenario: user with role viewer cannot get versions of a file in the project space
Given user "Alice" has uploaded a file inside space "download file" with content "new content" to "file.txt"
When user "Bob" tries to get version of the file "file.txt" with the index "1" of the space "download file" using the WebDAV API
And user "Alice" has uploaded a file inside space "download file" with content "newest content" to "file.txt"
When user "Bob" tries to get versions of the file "file.txt" from the space "download file" using the WebDAV API
Then the HTTP status code should be "403"
When user "Bob" tries to download version of the file "file.txt" with the index "1" of the space "download file" using the WebDAV API
Then the HTTP status code should be "403"