diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-03-16 15:07:38 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-03-16 15:07:38 +0100 |
commit | 847880803e9bdbaae332762e197ac13ffe552233 (patch) | |
tree | 2a254efbc830a14f47834343f892e6d592a27528 | |
parent | 06448170cfc66ad481ab999926252fbab2c1824c (diff) | |
download | nextcloud-server-847880803e9bdbaae332762e197ac13ffe552233.tar.gz nextcloud-server-847880803e9bdbaae332762e197ac13ffe552233.zip |
Fix storage priority in JS unit test
-rw-r--r-- | apps/files_external/tests/js/settingsSpec.js | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/apps/files_external/tests/js/settingsSpec.js b/apps/files_external/tests/js/settingsSpec.js index 350840e542c..5a3ee2cb5f1 100644 --- a/apps/files_external/tests/js/settingsSpec.js +++ b/apps/files_external/tests/js/settingsSpec.js @@ -56,14 +56,16 @@ describe('OCA.External.Settings tests', function() { 'configuration': { 'field1': 'Display Name 1', 'field2': '&Display Name 2' - } + }, + 'priority': 11 }, '\\OC\\AnotherTestBackend': { 'backend': 'Another Test Backend Name', 'configuration': { 'field1': 'Display Name 1', 'field2': '&Display Name 2' - } + }, + 'priority': 12 } } ); @@ -132,7 +134,8 @@ describe('OCA.External.Settings tests', function() { backendClass: '\\OC\\TestBackend', 'backendOptions[field1]': 'test', 'backendOptions[field2]': '', - mountPoint: 'TestBackend' + mountPoint: 'TestBackend', + priority: '11' }); // TODO: respond and check data-id |