summaryrefslogtreecommitdiffstats
path: root/install/ui/test/ipa_tests.js
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2011-11-09 18:48:04 -0600
committerAdam Young <ayoung@redhat.com>2011-11-14 16:47:10 -0500
commit20ad8fe1ba9b4a0f8ca9e365ac782895f6698c71 (patch)
tree1b55c708fbb6cdee93f9e194586a8dbe9633ff3d /install/ui/test/ipa_tests.js
parentd6d24be28953f2ec3cf1f2400619fd61459cf45f (diff)
downloadfreeipa.git-20ad8fe1ba9b4a0f8ca9e365ac782895f6698c71.tar.gz
freeipa.git-20ad8fe1ba9b4a0f8ca9e365ac782895f6698c71.tar.xz
freeipa.git-20ad8fe1ba9b4a0f8ca9e365ac782895f6698c71.zip
Removed develop.js.
The develop.js is no longer necessary because the code in it has been merged into the main code. An empty extension.js has been added to provide a place for UI customization. Ticket #2099
Diffstat (limited to 'install/ui/test/ipa_tests.js')
-rw-r--r--install/ui/test/ipa_tests.js11
1 files changed, 5 insertions, 6 deletions
diff --git a/install/ui/test/ipa_tests.js b/install/ui/test/ipa_tests.js
index 8b3efc70..372f7687 100644
--- a/install/ui/test/ipa_tests.js
+++ b/install/ui/test/ipa_tests.js
@@ -26,16 +26,15 @@ test("Testing ipa_init().", function() {
IPA.ajax_options.async = false;
- IPA.init(
- "data",
- true,
- function(data, text_status, xhr) {
+ IPA.init({
+ url: 'data',
+ on_success: function(data, text_status, xhr) {
ok(true, "ipa_init() succeeded.");
},
- function(xhr, text_status, error_thrown) {
+ on_error: function(xhr, text_status, error_thrown) {
ok(false, "ipa_init() failed: "+error_thrown);
}
- );
+ });
});
test("Testing IPA.get_entity_param().", function() {