mirror of
https://github.com/owncloud/ocis
synced 2026-04-25 17:25:21 +02:00
removing without skeleton files string from the user creation steps
This commit is contained in:
@@ -828,25 +828,6 @@ trait WebDav {
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @Then /^user "([^"]*)" should be able to access a skeleton file$/
|
||||
*
|
||||
* @param string $user
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function userShouldBeAbleToAccessASkeletonFile(string $user):void {
|
||||
$user = $this->getActualUsername($user);
|
||||
$response = $this->downloadFileAsUserUsingPassword($user, "textfile0.txt");
|
||||
$actualStatus = $response->getStatusCode();
|
||||
Assert::assertEquals(
|
||||
200,
|
||||
$actualStatus,
|
||||
"Expected status code to be '200', but got '$actualStatus'"
|
||||
);
|
||||
$this->checkDownloadedContentMatches("ownCloud test text file 0\n", '', $response);
|
||||
}
|
||||
|
||||
/**
|
||||
* @Then the size of the downloaded file should be :size bytes
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user