Changed fileList.pageSize to function call

remotes/origin/fix-10825
Nazar Mokrynskyi 12 years ago
parent 63145f5765
commit 8198e70f24
  1. 2
      apps/files/tests/js/filelistSpec.js

@ -815,7 +815,7 @@ describe('OCA.Files.FileList tests', function() {
fileList.$fileList.on('fileActionsReady', handler);
fileList._nextPage();
expect(handler.calledOnce).toEqual(true);
expect(handler.getCall(0).args[0].$files.length).toEqual(fileList.pageSize);
expect(handler.getCall(0).args[0].$files.length).toEqual(fileList.pageSize());
});
it('does not trigger "fileActionsReady" event after single add with silent argument', function() {
var handler = sinon.stub();

Loading…
Cancel
Save