Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2018-01-22 19:08:24 +0300
committerRobin Appelman <robin@icewind.nl>2018-01-22 19:08:24 +0300
commit80aef8ed081f73515f2d58396d36fca7453e4a08 (patch)
treebd7740ee5b90da21c78bdd428b80d07450e32400 /apps/files_external/tests/Storage
parent34a3613a6463b18f8e095e42122afc8a07ce2a13 (diff)
increase the time we wait for smb notifications in the test
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'apps/files_external/tests/Storage')
-rw-r--r--apps/files_external/tests/Storage/SmbTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_external/tests/Storage/SmbTest.php b/apps/files_external/tests/Storage/SmbTest.php
index edacb498d5e..e3c0408114d 100644
--- a/apps/files_external/tests/Storage/SmbTest.php
+++ b/apps/files_external/tests/Storage/SmbTest.php
@@ -96,11 +96,11 @@ class SmbTest extends \Test\Files\Storage\Storage {
public function testNotifyGetChanges() {
$notifyHandler = $this->instance->notify('');
- usleep(100 * 1000); //give time for the notify to start
+ sleep(1); //give time for the notify to start
$this->instance->file_put_contents('/newfile.txt', 'test content');
$this->instance->rename('/newfile.txt', 'renamed.txt');
$this->instance->unlink('/renamed.txt');
- usleep(100 * 1000); //time for all changes to be processed
+ sleep(1); //time for all changes to be processed
$changes = $notifyHandler->getChanges();
$notifyHandler->stop();