aboutsummaryrefslogtreecommitdiffstats
path: root/lib/xmlrpc.js
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2010-06-01 01:27:07 +0200
committerMatěj Cepl <mcepl@redhat.com>2010-06-01 01:27:07 +0200
commit655dcd3b809c80ca6ca2ae001202064dd594df2b (patch)
tree554332b216f36f0957e9bbe09e5f518b409c019b /lib/xmlrpc.js
parent43218b75f3df450b97992815322c2d668ba2bab7 (diff)
downloadbugzilla-triage-655dcd3b809c80ca6ca2ae001202064dd594df2b.tar.gz
Adding unit tests for xmlrpc.js
Diffstat (limited to 'lib/xmlrpc.js')
-rw-r--r--lib/xmlrpc.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/xmlrpc.js b/lib/xmlrpc.js
index 2b264e7..69bb77e 100644
--- a/lib/xmlrpc.js
+++ b/lib/xmlrpc.js
@@ -15,7 +15,7 @@
*
*/
-exports.XMLRPCMessage = function XMLRPCMessage(methodname) {
+var XMLRPCMessage = exports.XMLRPCMessage = function XMLRPCMessage(methodname) {
this.method = methodname || "system.listMethods";
this.params = [];
return this;