aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/tests/js/favoritespluginspec.js
diff options
context:
space:
mode:
authorVincent Petry <vincent@nextcloud.com>2022-07-26 12:21:13 +0200
committerGitHub <noreply@github.com>2022-07-26 12:21:13 +0200
commitb4353c46519ffc44c30eb258210911a044bbca41 (patch)
treea1e4c6299c8814139f5c4d0d27b782b22835e9f1 /apps/files/tests/js/favoritespluginspec.js
parent7615536977eda7f3bda5c29eaa780a323c97afc7 (diff)
parentbb2557c38974bea38dcc48185723b33781412cbd (diff)
downloadnextcloud-server-b4353c46519ffc44c30eb258210911a044bbca41.tar.gz
nextcloud-server-b4353c46519ffc44c30eb258210911a044bbca41.zip
Merge pull request #33320 from nextcloud/bugfix/noid/remove-files-duplicate-dom-ids
Replace files app ids to classes
Diffstat (limited to 'apps/files/tests/js/favoritespluginspec.js')
-rw-r--r--apps/files/tests/js/favoritespluginspec.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/tests/js/favoritespluginspec.js b/apps/files/tests/js/favoritespluginspec.js
index 94359e0e706..ca0cea8b29a 100644
--- a/apps/files/tests/js/favoritespluginspec.js
+++ b/apps/files/tests/js/favoritespluginspec.js
@@ -88,7 +88,7 @@ describe('OCA.Files.FavoritesPlugin tests', function() {
var setActiveViewStub = sinon.stub(OCA.Files.App, 'setActiveView');
// create dummy table so we can click the dom
- var $table = '<table><thead></thead><tbody id="fileList"></tbody></table>';
+ var $table = '<table><thead></thead><tbody class="files-fileList"></tbody></table>';
$('#app-content-favorites').append($table);
Plugin.favoritesFileList = null;