diff options
author | Petr Vobornik <pvoborni@redhat.com> | 2011-10-20 16:37:48 +0200 |
---|---|---|
committer | Endi S. Dewata <edewata@redhat.com> | 2011-10-20 13:13:58 -0200 |
commit | 40f9f52a76907960edc293a84c1af281f674ecad (patch) | |
tree | 9a73b22f8cdb1cbe96499e70423e742706e85d65 /install | |
parent | 24cedc41541d140e3a7571499e1944b5beae56e4 (diff) | |
download | freeipa-40f9f52a76907960edc293a84c1af281f674ecad.tar.gz freeipa-40f9f52a76907960edc293a84c1af281f674ecad.tar.xz freeipa-40f9f52a76907960edc293a84c1af281f674ecad.zip |
Fixing infinite loop in UI navigation unit test.
https://fedorahosted.org/freeipa/ticket/1531
It's a fix for regression introduced by previous patch.
Diffstat (limited to 'install')
-rw-r--r-- | install/ui/test/navigation_tests.js | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/install/ui/test/navigation_tests.js b/install/ui/test/navigation_tests.js index 90e708ccb..6df1926c3 100644 --- a/install/ui/test/navigation_tests.js +++ b/install/ui/test/navigation_tests.js @@ -45,9 +45,15 @@ test("Testing IPA.navigation.create().", function() { IPA.entities = $.ordered_map(); IPA.entity_factories.user = function() { - var that = IPA.entity({name: 'user', - metadata:IPA.metadata.objects.user}); - that.add_facet(IPA.search_facet({'entity':that})); + var that = IPA.entity({ + name: 'user', + metadata:IPA.metadata.objects.user, + facets: [ + { + type: 'search' + } + ] + }); that.display = function(container){ user_mock_called = true; |