diff options
author | Matěj Cepl <mcepl@redhat.com> | 2010-06-01 01:27:07 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2010-06-01 01:27:07 +0200 |
commit | 655dcd3b809c80ca6ca2ae001202064dd594df2b (patch) | |
tree | 554332b216f36f0957e9bbe09e5f518b409c019b /lib/xmlrpc.js | |
parent | 43218b75f3df450b97992815322c2d668ba2bab7 (diff) | |
download | bugzilla-triage-655dcd3b809c80ca6ca2ae001202064dd594df2b.tar.gz |
Adding unit tests for xmlrpc.js
Diffstat (limited to 'lib/xmlrpc.js')
-rw-r--r-- | lib/xmlrpc.js | 2 |
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; |