diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-10-12 16:28:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-12 16:28:26 +0200 |
commit | 85694c6d766e90385c024c5325c1e0217855b44a (patch) | |
tree | 7d312c51ac99bbd955a1b3e1fcf2fbd0a432be6f /apps | |
parent | a834e2742ebf02a2e8708f5d0594e95cbac55e34 (diff) | |
parent | 16817f3743cf70010182ff269185e27acf697523 (diff) | |
download | nextcloud-server-85694c6d766e90385c024c5325c1e0217855b44a.tar.gz nextcloud-server-85694c6d766e90385c024c5325c1e0217855b44a.zip |
Merge pull request #11771 from nextcloud/techdebt/noid/strict-activity-events
Make activity events strict
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/tests/Activity/ProviderTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/tests/Activity/ProviderTest.php b/apps/files/tests/Activity/ProviderTest.php index f178ff195e4..d3738ae41a7 100644 --- a/apps/files/tests/Activity/ProviderTest.php +++ b/apps/files/tests/Activity/ProviderTest.php @@ -98,7 +98,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 ]; } |