diff options
author | Vincent Chan <plus.vincchan@gmail.com> | 2016-05-25 01:11:07 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2016-05-30 11:23:54 +0200 |
commit | 3538e90ba1e6e9aad0e665e18e4967b264c97e9a (patch) | |
tree | c40f2ff7cf8d3804f17fda08a4f9e2491d77e41e /apps/files/tests | |
parent | 12b482b976656bb73b1dd265b3e069ff4eb71c65 (diff) | |
download | nextcloud-server-3538e90ba1e6e9aad0e665e18e4967b264c97e9a.tar.gz nextcloud-server-3538e90ba1e6e9aad0e665e18e4967b264c97e9a.zip |
fixes size of the download spinner
Diffstat (limited to 'apps/files/tests')
-rw-r--r-- | apps/files/tests/js/fileactionsSpec.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/tests/js/fileactionsSpec.js b/apps/files/tests/js/fileactionsSpec.js index 3f46a27d1f9..75a18713696 100644 --- a/apps/files/tests/js/fileactionsSpec.js +++ b/apps/files/tests/js/fileactionsSpec.js @@ -666,13 +666,13 @@ describe('OCA.Files.FileActions tests', function() { it('replaces download icon with spinner', function() { FileActions.updateFileActionSpinner($el, true); - expect($el.find('.icon.loading').length).toEqual(1); + expect($el.find('.icon.icon-loading-small').length).toEqual(1); expect($el.find('.icon.icon-download').hasClass('hidden')).toEqual(true); }); it('replaces spinner back with download icon with spinner', function() { FileActions.updateFileActionSpinner($el, true); FileActions.updateFileActionSpinner($el, false); - expect($el.find('.icon.loading').length).toEqual(0); + expect($el.find('.icon.icon-loading-small').length).toEqual(0); expect($el.find('.icon.icon-download').hasClass('hidden')).toEqual(false); }); }); |