diff options
author | Morris Jobke <hey@morrisjobke.de> | 2014-12-18 01:27:58 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-12-18 01:27:58 +0100 |
commit | ec0401f97b39f12b611c997e39039420b085969c (patch) | |
tree | 3b23eb8ab6a799254511da8141331cc808bf961a /apps/files/tests | |
parent | 82f8726903c69b3a91f1c769d469197353ce1945 (diff) | |
download | nextcloud-server-ec0401f97b39f12b611c997e39039420b085969c.tar.gz nextcloud-server-ec0401f97b39f12b611c997e39039420b085969c.zip |
be more explicit in JS unit tests - caused by accessibility issues
Diffstat (limited to 'apps/files/tests')
-rw-r--r-- | apps/files/tests/js/filelistSpec.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/tests/js/filelistSpec.js b/apps/files/tests/js/filelistSpec.js index 6c83f214c39..6dafa262715 100644 --- a/apps/files/tests/js/filelistSpec.js +++ b/apps/files/tests/js/filelistSpec.js @@ -275,7 +275,7 @@ describe('OCA.Files.FileList tests', function() { mtime: -1 }; var $tr = fileList.add(fileData); - expect($tr.find('.date').text()).toEqual('?'); + expect($tr.find('.date .modified').text()).toEqual('?'); }); it('adds new file to the end of the list', function() { var $tr; |