diff options
Diffstat (limited to 'apps/systemtags')
-rw-r--r-- | apps/systemtags/tests/js/systemtagsfilelistSpec.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/systemtags/tests/js/systemtagsfilelistSpec.js b/apps/systemtags/tests/js/systemtagsfilelistSpec.js index ab831e7f849..facdf8dc42c 100644 --- a/apps/systemtags/tests/js/systemtagsfilelistSpec.js +++ b/apps/systemtags/tests/js/systemtagsfilelistSpec.js @@ -28,7 +28,7 @@ describe('OCA.SystemTags.FileList tests', function() { beforeEach(function() { // init parameters and test table elements $('#testArea').append( - '<div id="app-content-container">' + + '<div id="app-content">' + // init horrible parameters '<input type="hidden" id="permissions" value="31"></input>' + '<div class="files-controls"></div>' + @@ -77,7 +77,7 @@ describe('OCA.SystemTags.FileList tests', function() { ]); fileList = new OCA.SystemTags.FileList( - $('#app-content-container'), { + $('#app-content'), { systemTagIds: [] } ); @@ -167,7 +167,7 @@ describe('OCA.SystemTags.FileList tests', function() { it('renders empty message when no tags were set', function() { fileList = new OCA.SystemTags.FileList( - $('#app-content-container'), { + $('#app-content'), { systemTagIds: [] } ); @@ -181,7 +181,7 @@ describe('OCA.SystemTags.FileList tests', function() { it('render files', function(done) { fileList = new OCA.SystemTags.FileList( - $('#app-content-container'), { + $('#app-content'), { systemTagIds: ['123', '456'] } ); |