summaryrefslogtreecommitdiffstats
path: root/install/ui/test/details_tests.js
diff options
context:
space:
mode:
Diffstat (limited to 'install/ui/test/details_tests.js')
-rw-r--r--install/ui/test/details_tests.js18
1 files changed, 9 insertions, 9 deletions
diff --git a/install/ui/test/details_tests.js b/install/ui/test/details_tests.js
index 76a752400..c63a0af88 100644
--- a/install/ui/test/details_tests.js
+++ b/install/ui/test/details_tests.js
@@ -114,18 +114,18 @@ test("Testing details lifecycle: create, setup, load.", function(){
var result = {};
- IPA.cmd(
- 'user_show',
- ['kfrog'],
- {},
- function(data, text_status, xhr) {
+ IPA.command({
+ entity: 'user',
+ method: 'show',
+ args: ['kfrog'],
+ on_success: function(data, text_status, xhr) {
result = data.result.result;
- ok(true, "IPA.cmd() succeeded.");
+ ok(true, "IPA.command() succeeded.");
},
- function(xhr, text_status, error_thrown) {
- ok(false, "IPA.cmd() failed: "+error_thrown);
+ on_error: function(xhr, text_status, error_thrown) {
+ ok(false, "IPA.command() failed: "+error_thrown);
}
- );
+ }).execute();
var setup_called = false;
var save_called= false;