From 56b6701d98347876efb5063b13aea8ef6cf78df8 Mon Sep 17 00:00:00 2001 From: jld3103 Date: Fri, 16 Dec 2022 14:27:14 +0100 Subject: [PATCH] nextcloud: Remove accidentally copied changes --- packages/nextcloud/test/core_test.dart | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/packages/nextcloud/test/core_test.dart b/packages/nextcloud/test/core_test.dart index 475f455b..ff99eaaf 100644 --- a/packages/nextcloud/test/core_test.dart +++ b/packages/nextcloud/test/core_test.dart @@ -8,7 +8,6 @@ Future main() async { apps: [ 'news', 'notes', - 'spreed', ], ); @@ -57,14 +56,13 @@ Future main() async { test('Get navigation apps', () async { final navigationApps = await client.core.getNavigationApps(); - expect(navigationApps.ocs.data, hasLength(7)); + expect(navigationApps.ocs.data, hasLength(6)); expect(navigationApps.ocs.data[0].id, 'dashboard'); expect(navigationApps.ocs.data[1].id, 'files'); expect(navigationApps.ocs.data[2].id, 'photos'); expect(navigationApps.ocs.data[3].id, 'activity'); - expect(navigationApps.ocs.data[4].id, 'spreed'); - expect(navigationApps.ocs.data[5].id, 'notes'); - expect(navigationApps.ocs.data[6].id, 'news'); + expect(navigationApps.ocs.data[4].id, 'notes'); + expect(navigationApps.ocs.data[5].id, 'news'); }); test('Autocomplete', () async {