diff options
author | Robin Appelman <robin@icewind.nl> | 2018-01-22 17:08:24 +0100 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2018-01-22 17:08:24 +0100 |
commit | 80aef8ed081f73515f2d58396d36fca7453e4a08 (patch) | |
tree | bd7740ee5b90da21c78bdd428b80d07450e32400 /apps/files_external/tests | |
parent | 34a3613a6463b18f8e095e42122afc8a07ce2a13 (diff) | |
download | nextcloud-server-80aef8ed081f73515f2d58396d36fca7453e4a08.tar.gz nextcloud-server-80aef8ed081f73515f2d58396d36fca7453e4a08.zip |
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')
-rw-r--r-- | apps/files_external/tests/Storage/SmbTest.php | 4 |
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(); |