Merge pull request #14679 from nextcloud/fix/noid/l10n-accessibiltiy
Fix translation sync for accessibiltiy
This commit is contained in:
commit
11e8fd47ee
3 changed files with 5 additions and 1 deletions
2
apps/accessibility/.l10nignore
Normal file
2
apps/accessibility/.l10nignore
Normal file
|
@ -0,0 +1,2 @@
|
|||
# compiled vue templates
|
||||
js/accessibility.js
|
0
apps/accessibility/l10n/.gitkeep
Normal file
0
apps/accessibility/l10n/.gitkeep
Normal 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
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue