summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMarcel Klehr <mklehr@gmx.net>2023-02-24 14:40:33 +0100
committerMarcel Klehr <mklehr@gmx.net>2023-02-24 14:40:33 +0100
commit4f7d77406d71bc7af919adb20bc42ea7e861e3c9 (patch)
tree97118ca0f7064ca37b7c2b889b33eeda51a78b41 /tests
parent889caf46328a54e474e2340a7b7f0408e855c7fe (diff)
downloadnextcloud-server-4f7d77406d71bc7af919adb20bc42ea7e861e3c9.tar.gz
nextcloud-server-4f7d77406d71bc7af919adb20bc42ea7e861e3c9.zip
Fix SystemTagManagerTest#createTag test
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/SystemTag/SystemTagManagerTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/SystemTag/SystemTagManagerTest.php b/tests/lib/SystemTag/SystemTagManagerTest.php
index c1f4ce83ee5..e261a68aaf7 100644
--- a/tests/lib/SystemTag/SystemTagManagerTest.php
+++ b/tests/lib/SystemTag/SystemTagManagerTest.php
@@ -261,7 +261,7 @@ class SystemTagManagerTest extends TestCase {
public function testCreateOverlongName() {
$tag = $this->tagManager->createTag('Zona circundante do Palácio Nacional da Ajuda (Jardim das Damas, Salão de Física, Torre Sineira, Paço Velho e Jardim Botânico)', true, true);
- $this->assertSame('Zona circundante do Palácio Nacional da Ajuda (Jardim das Damas,', $tag->getName());
+ $this->assertSame('Zona circundante do Palácio Nacional da Ajuda (Jardim das Damas', $tag->getName()); // 63 characters but 64 bytes due to "á"
}
/**