aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/tests
diff options
context:
space:
mode:
authorprovokateurin <kate@provokateurin.de>2025-05-05 13:50:26 +0200
committerprovokateurin <kate@provokateurin.de>2025-05-05 14:05:35 +0200
commitcfdb919c37f979b884977f467d51a2567bd74273 (patch)
tree3c51d228d55f813b48f6e43400048c52367956e6 /apps/files/tests
parent47834591444a64a8f1a041ada241d4b69ca8b7da (diff)
downloadnextcloud-server-fix/files/activity-rich-object-strings.tar.gz
nextcloud-server-fix/files/activity-rich-object-strings.zip
fix(files): Fix non-string values for activity rich object stringsfix/files/activity-rich-object-strings
Signed-off-by: provokateurin <kate@provokateurin.de>
Diffstat (limited to 'apps/files/tests')
-rw-r--r--apps/files/tests/Activity/ProviderTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/tests/Activity/ProviderTest.php b/apps/files/tests/Activity/ProviderTest.php
index 7803563a11c..7b91e980842 100644
--- a/apps/files/tests/Activity/ProviderTest.php
+++ b/apps/files/tests/Activity/ProviderTest.php
@@ -93,7 +93,7 @@ class ProviderTest extends TestCase {
return [
[[42 => '/FortyTwo.txt'], null, '42', 'FortyTwo.txt', 'FortyTwo.txt'],
[['23' => '/Twenty/Three.txt'], null, '23', 'Three.txt', 'Twenty/Three.txt'],
- ['/Foo/Bar.txt', 128, 128, 'Bar.txt', 'Foo/Bar.txt'], // Legacy from ownCloud 8.2 and before
+ ['/Foo/Bar.txt', 128, '128', 'Bar.txt', 'Foo/Bar.txt'], // Legacy from ownCloud 8.2 and before
];
}