diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2016-11-19 11:36:51 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2016-11-21 11:30:03 +0100 |
commit | d001dbd2594b8d937d3ccaefa4ea7ab6452a0acc (patch) | |
tree | 828a57377e864e2dcf14a59d69486281e5cee81f /core/js/tests | |
parent | d04ec9221ccb33835ae2730bc003b93c2cfbbf4c (diff) | |
download | nextcloud-server-d001dbd2594b8d937d3ccaefa4ea7ab6452a0acc.tar.gz nextcloud-server-d001dbd2594b8d937d3ccaefa4ea7ab6452a0acc.zip |
Adjust unit tests
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to 'core/js/tests')
-rw-r--r-- | core/js/tests/specs/sharedialogviewSpec.js | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/core/js/tests/specs/sharedialogviewSpec.js b/core/js/tests/specs/sharedialogviewSpec.js index 6e86cb8eff7..a44bb309c5c 100644 --- a/core/js/tests/specs/sharedialogviewSpec.js +++ b/core/js/tests/specs/sharedialogviewSpec.js @@ -529,7 +529,8 @@ describe('OC.Share.ShareDialogView', function() { }, 'users' : [{'label': 'bob', 'value': {'shareType': 0, 'shareWith': 'test'}}], 'groups' : [], - 'remotes': [] + 'remotes': [], + 'lookup': [] } } }); @@ -577,7 +578,8 @@ describe('OC.Share.ShareDialogView', function() { } ], 'groups': [], - 'remotes': [] + 'remotes': [], + 'lookup': [] } } }); @@ -635,7 +637,8 @@ describe('OC.Share.ShareDialogView', function() { } ], 'groups': [], - 'remotes': [] + 'remotes': [], + 'lookup': [] } } }); @@ -715,7 +718,8 @@ describe('OC.Share.ShareDialogView', function() { } ], 'groups': [], - 'remotes': [] + 'remotes': [], + 'lookup': [] } } }); @@ -765,7 +769,8 @@ describe('OC.Share.ShareDialogView', function() { } } ], - 'remotes': [] + 'remotes': [], + 'lookup': [] } } }); @@ -815,7 +820,8 @@ describe('OC.Share.ShareDialogView', function() { 'shareWith': 'foo2@bar.com/baz' } } - ] + ], + 'lookup': [] } } }); |