From 3be51b5b8c673932097d17dc55567f4b9dfb5d6a Mon Sep 17 00:00:00 2001 From: will Date: Mon, 8 Nov 2010 13:00:14 -0800 Subject: [PATCH] bug 5881: disabled domain edit for now since it doesn't work as intended. - Also fixed creating user and domain in the test provisioning tool to make use of the new API format. --- ui/test/content/tab_test.html | 2 +- ui/test/scripts/cloud.core.test.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/test/content/tab_test.html b/ui/test/content/tab_test.html index e74f770ab5d..e3d0d793175 100644 --- a/ui/test/content/tab_test.html +++ b/ui/test/content/tab_test.html @@ -404,7 +404,7 @@ diff --git a/ui/test/scripts/cloud.core.test.js b/ui/test/scripts/cloud.core.test.js index a366f7ee302..46fe19b65cd 100644 --- a/ui/test/scripts/cloud.core.test.js +++ b/ui/test/scripts/cloud.core.test.js @@ -322,7 +322,7 @@ $(document).ready(function() { dataType: "json", async: false, success: function(json) { - userJSONToTemplate(json.createuserresponse, template); + userJSONToTemplate(json.createuserresponse.user, template); loadingImg.hide(); rowContainer.show(); }, @@ -552,7 +552,7 @@ $(document).ready(function() { dataType: "json", async: false, success: function(json) { - domainJSONToTemplate(json.createdomainresponse, template); + domainJSONToTemplate(json.createdomainresponse.domain, template); loadingImg.hide(); rowContainer.show(); },