From 655dcd3b809c80ca6ca2ae001202064dd594df2b Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Tue, 1 Jun 2010 01:27:07 +0200 Subject: Adding unit tests for xmlrpc.js --- lib/rhbzpage.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'lib/rhbzpage.js') diff --git a/lib/rhbzpage.js b/lib/rhbzpage.js index b007982..f318528 100644 --- a/lib/rhbzpage.js +++ b/lib/rhbzpage.js @@ -4,6 +4,8 @@ // http://www.opensource.org/licenses/mit-license.php "use strict"; var utilMod = require("util"); +var xrpc = require("xmlrpc"); +var xhr = require("xhr"); // var TriagedDistro = 13; // var NumberOfFrames = 7; // var XMLRPCurl = "https://bugzilla.redhat.com/xmlrpc.cgi"; @@ -641,7 +643,7 @@ RHBugzillaPage.prototype.fillInChipMagic = function () { attURL = "https://bugzilla.redhat.com/attachment.cgi?id="+XorgLogAttID; that = this; - let req = new XMLHttpRequest(); + let req = new xhrMod.XMLHttpRequest(); req.open("GET",attURL,true); req.onreadystatechange = function (aEvt) { if (req.readyState == 4) { @@ -888,7 +890,7 @@ RHBugzillaPage.prototype.fixAttachById = function(id, type, email) { email = false; } - let msg = new XMLRPCMessage("bugzilla.updateAttachMimeType"); + let msg = new xrpc.XMLRPCMessage("bugzilla.updateAttachMimeType"); msg.addParameter( { 'attach_id' : id, 'mime_type' : type, -- cgit