From 1b77b0eecc96985da1e133be592010fefa753d71 Mon Sep 17 00:00:00 2001 From: "Haynes, Royce L" Date: Wed, 5 Mar 2014 09:46:28 -0700 Subject: [PATCH] Fixed typo in new unit test --- test/test.upload.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.upload.js b/test/test.upload.js index fced7b5..150ee83 100644 --- a/test/test.upload.js +++ b/test/test.upload.js @@ -77,7 +77,7 @@ describe('test upload', function () { res.writeHead(500, {'content-type': 'application/json'}); res.end(JSON.stringify({ statusCode: 500, error: err.toString() })); } else { - res.end(JSON.stringify({ statusCode: 200, uri: s3Response.custom_uri.uri, type: s3Response.custom_uri.stype })); + res.end(JSON.stringify({ statusCode: 200, uri: s3Response.custom_uri.uri, type: s3Response.custom_uri.type })); } };