paypro: fix POST route in fake paypro server.

This commit is contained in:
Christopher Jeffrey 2014-08-11 19:23:13 -04:00 committed by Manuel Araoz
commit 6ec8a087f3

View file

@ -210,11 +210,13 @@ function startServer(cb) {
return cb(null, res, res.body); return cb(null, res, res.body);
}, },
},
/** /**
* Receive Payment * Receive Payment
*/ */
POST: {
'/-/pay': function(req, cb) { '/-/pay': function(req, cb) {
var body = req.body; var body = req.body;