Skip to content

Commit 11e8fd4

Browse files
authored
Merge pull request #14679 from nextcloud/fix/noid/l10n-accessibiltiy
Fix translation sync for accessibiltiy
2 parents 2204d41 + b7f0091 commit 11e8fd4

3 files changed

Lines changed: 5 additions & 1 deletion

File tree

apps/accessibility/.l10nignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# compiled vue templates
2+
js/accessibility.js

apps/accessibility/l10n/.gitkeep

Whitespace-only changes.

apps/files_external/tests/Storage/SmbTest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,9 @@ public function testNotifyGetChanges() {
9898
$notifyHandler = $this->instance->notify('');
9999
sleep(1); //give time for the notify to start
100100
$this->instance->file_put_contents('/newfile.txt', 'test content');
101+
sleep(1);
101102
$this->instance->rename('/newfile.txt', 'renamed.txt');
103+
sleep(1);
102104
$this->instance->unlink('/renamed.txt');
103105
sleep(1); //time for all changes to be processed
104106

@@ -119,7 +121,7 @@ public function testNotifyGetChanges() {
119121
];
120122

121123
foreach ($expected as $expectedChange) {
122-
$this->assertContains($expectedChange, $changes, '', false, false); // dont check object identity
124+
$this->assertContains($expectedChange, $changes, 'Actual changes are:' . PHP_EOL . print_r($expected, true), false, false); // dont check object identity
123125
}
124126
}
125127

0 commit comments

Comments
 (0)