JSHint fixes in sharedfilelistSpec unit test file

This commit is contained in:
Vincent Petry 2014-11-19 17:44:05 +01:00
parent 98ec0451be
commit 63fa8ec69a
1 changed files with 3 additions and 1 deletions

View File

@ -436,6 +436,7 @@ describe('OCA.Sharing.FileList tests', function() {
fileList.reload();
/* jshint camelcase: false */
ocsResponse = {
ocs: {
meta: {
@ -641,7 +642,8 @@ describe('OCA.Sharing.FileList tests', function() {
}]);
$tr = fileList.$el.find('tr:first');
expect(parseInt($tr.attr('data-share-permissions'), 10)).toEqual(OC.PERMISSION_ALL - OC.PERMISSION_SHARE - OC.PERMISSION_DELETE);
expect(parseInt($tr.attr('data-share-permissions'), 10))
.toEqual(OC.PERMISSION_ALL - OC.PERMISSION_SHARE - OC.PERMISSION_DELETE);
});
});
});