diff options
author | Morris Jobke <hey@morrisjobke.de> | 2019-03-14 16:55:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-14 16:55:17 +0100 |
commit | 11e8fd47ee22418cc9f3d4a15671aadc580b99b0 (patch) | |
tree | 995cfdaa5472d919ed065ebea9cd7f34600fd3cc /apps | |
parent | 2204d4174c5d7eb556a1ad5357292e7fd6ab46c8 (diff) | |
parent | b7f0091e0fe598dad4e97288d037094494034e8b (diff) | |
download | nextcloud-server-11e8fd47ee22418cc9f3d4a15671aadc580b99b0.tar.gz nextcloud-server-11e8fd47ee22418cc9f3d4a15671aadc580b99b0.zip |
Merge pull request #14679 from nextcloud/fix/noid/l10n-accessibiltiy
Fix translation sync for accessibiltiy
Diffstat (limited to 'apps')
-rw-r--r-- | apps/accessibility/.l10nignore | 2 | ||||
-rw-r--r-- | apps/accessibility/l10n/.gitkeep | 0 | ||||
-rw-r--r-- | apps/files_external/tests/Storage/SmbTest.php | 4 |
3 files changed, 5 insertions, 1 deletions
diff --git a/apps/accessibility/.l10nignore b/apps/accessibility/.l10nignore new file mode 100644 index 00000000000..7415aab0f01 --- /dev/null +++ b/apps/accessibility/.l10nignore @@ -0,0 +1,2 @@ +# compiled vue templates +js/accessibility.js diff --git a/apps/accessibility/l10n/.gitkeep b/apps/accessibility/l10n/.gitkeep new file mode 100644 index 00000000000..e69de29bb2d --- /dev/null +++ b/apps/accessibility/l10n/.gitkeep diff --git a/apps/files_external/tests/Storage/SmbTest.php b/apps/files_external/tests/Storage/SmbTest.php index 562ac6c8e5e..609b362d60d 100644 --- a/apps/files_external/tests/Storage/SmbTest.php +++ b/apps/files_external/tests/Storage/SmbTest.php @@ -98,7 +98,9 @@ class SmbTest extends \Test\Files\Storage\Storage { $notifyHandler = $this->instance->notify(''); sleep(1); //give time for the notify to start $this->instance->file_put_contents('/newfile.txt', 'test content'); + sleep(1); $this->instance->rename('/newfile.txt', 'renamed.txt'); + sleep(1); $this->instance->unlink('/renamed.txt'); sleep(1); //time for all changes to be processed @@ -119,7 +121,7 @@ class SmbTest extends \Test\Files\Storage\Storage { ]; foreach ($expected as $expectedChange) { - $this->assertContains($expectedChange, $changes, '', false, false); // dont check object identity + $this->assertContains($expectedChange, $changes, 'Actual changes are:' . PHP_EOL . print_r($expected, true), false, false); // dont check object identity } } |