diff options
author | Endi Sukma Dewata <edewata@redhat.com> | 2011-11-16 21:07:20 -0600 |
---|---|---|
committer | Endi S. Dewata <edewata@redhat.com> | 2011-12-06 22:07:52 +0000 |
commit | a8ea42bda841c8773d68886614faf9efd38e33bd (patch) | |
tree | 92ddaae7ead82784eefb8dde81bc81e91945bfa0 /install/ui/test/entity_tests.js | |
parent | 6f0c16e4289dd1a68bfd673da52a511087d84b9a (diff) | |
download | freeipa.git-a8ea42bda841c8773d68886614faf9efd38e33bd.tar.gz freeipa.git-a8ea42bda841c8773d68886614faf9efd38e33bd.tar.xz freeipa.git-a8ea42bda841c8773d68886614faf9efd38e33bd.zip |
Fixed entity metadata resolution.
The current code assumes that an entity will always have a corresponding
LDAPObject on the server, so it looks for the metadata in a fixed location.
This assumption doesn't work for HBAC Test since it is a Command, not an
LDAPObject, so the metadata has to be obtained from a different location.
A new method get_default_metadata() has been added to allow each entity
to find the metadata from the correct location.
Ticket #388
Diffstat (limited to 'install/ui/test/entity_tests.js')
-rw-r--r-- | install/ui/test/entity_tests.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/install/ui/test/entity_tests.js b/install/ui/test/entity_tests.js index aa53613a..a81e0b89 100644 --- a/install/ui/test/entity_tests.js +++ b/install/ui/test/entity_tests.js @@ -35,12 +35,12 @@ module('entity',{ var that = IPA.entity(spec); - that.init = function(params) { - that.entity_init(params); + that.init = function() { + that.entity_init(); - params.builder.search_facet({ - columns: [ 'uid' ] - }); + that.builder.search_facet({ + columns: [ 'uid' ] + }); }; return that; |