Merge pull request #14679 from nextcloud/fix/noid/l10n-accessibiltiy

Fix translation sync for accessibiltiy
This commit is contained in:
Morris Jobke 2019-03-14 16:55:17 +01:00 committed by GitHub
commit 11e8fd47ee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 1 deletions

View file

@ -0,0 +1,2 @@
# compiled vue templates
js/accessibility.js

View file

View file

@ -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
}
}