aws-lambda-helper
Advanced tools
Comparing version 2.13.1 to 2.13.2
@@ -378,3 +378,3 @@ 'use strict'; | ||
Key: env + '/' + filepath, | ||
Body: JSON.stringify(params), | ||
Body: JSON.stringify(item), | ||
ContentType: 'application/json', | ||
@@ -381,0 +381,0 @@ ACL: 'public-read' |
{ | ||
"name": "aws-lambda-helper", | ||
"version": "2.13.1", | ||
"version": "2.13.2", | ||
"description": "Collection of helper methods for lambda", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
@@ -27,3 +27,3 @@ require('env2')('.env'); | ||
assert(!err, 'No Errror retrieving the Record'); | ||
assert.equal(data.id, params.id, 'record Successfully saved to S3'); | ||
assert.equal(data.id, params.items[0].id, 'record Successfully saved to S3'); | ||
done(); | ||
@@ -30,0 +30,0 @@ }); |
193129