diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-09-22 18:17:33 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-09-22 18:17:33 +0200 |
commit | 91d9d45c6c55d5ee2f44567893cf96d034aaed1e (patch) | |
tree | f093f1c5bb09b9b6a02a94b6e789e2f6c4c6d7bc /tests/acceptance | |
parent | 3c5ac2112257731bb89a16e040563e1dddcef689 (diff) | |
download | nextcloud-server-91d9d45c6c55d5ee2f44567893cf96d034aaed1e.tar.gz nextcloud-server-91d9d45c6c55d5ee2f44567893cf96d034aaed1e.zip |
correct delete-icon to icon-delete, fix #11128
Diffstat (limited to 'tests/acceptance')
-rw-r--r-- | tests/acceptance/tests/pages/files.page.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/acceptance/tests/pages/files.page.js b/tests/acceptance/tests/pages/files.page.js index 8efe33ee99a..e5445309b26 100644 --- a/tests/acceptance/tests/pages/files.page.js +++ b/tests/acceptance/tests/pages/files.page.js @@ -78,7 +78,7 @@ }; FilesPage.prototype.deleteButtonId = function(fileName) { - return by.css("tr[data-file='" + fileName + "'] .action.delete.delete-icon"); + return by.css("tr[data-file='" + fileName + "'] .action.delete.icon-delete"); }; //================ SHARED ===============================================// |