Skip to content

Commit

Permalink
chore: ignore warning of Nextcloud
Browse files Browse the repository at this point in the history
Ignored:

1) /var/www/html/lib/private/Files/Storage/Local.php:302
file_put_contents(/var/www/html/data/appdata_ocg6kuxlhfpy/avatar/username/avatar.png): Failed to open stream: No such file or directory

Signed-off-by: Vitor Mattos <[email protected]>
  • Loading branch information
vitormattos committed Jan 19, 2025
1 parent 0eedcef commit 03596b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Unit/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public function createAccount(string $username, string $password, string $groupN

$user = $userManager->get($username);
if (!$user) {
$user = $userManager->createUser($username, $password);
$user = @$userManager->createUser($username, $password);
}
$group = $groupManager->get($groupName);
if (!$group) {
Expand Down

0 comments on commit 03596b5

Please sign in to comment.