From a5c1716124cb763c5a8deff1248b1a14c6d0a703 Mon Sep 17 00:00:00 2001 From: Philipp Muens Date: Thu, 9 Mar 2017 09:47:44 +0100 Subject: [PATCH 1/2] Fix minor typos --- .../multiple-events-multiple-functions/tests.js | 2 +- .../cloud-watch-event/multiple-events-single-function/tests.js | 2 +- .../cloud-watch-event/single-event-multiple-functions/tests.js | 2 +- .../aws/cloud-watch-event/single-event-single-function/tests.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/integration/aws/cloud-watch-event/multiple-events-multiple-functions/tests.js b/tests/integration/aws/cloud-watch-event/multiple-events-multiple-functions/tests.js index bb9a7646b..67730a721 100644 --- a/tests/integration/aws/cloud-watch-event/multiple-events-multiple-functions/tests.js +++ b/tests/integration/aws/cloud-watch-event/multiple-events-multiple-functions/tests.js @@ -10,7 +10,7 @@ const Utils = require('../../../../utils/index'); const CF = new AWS.CloudFormation({ region: 'us-east-1' }); BbPromise.promisifyAll(CF, { suffix: 'Promised' }); -describe('AWS - CloudWathEvent: Multiple events with multiple functions', () => { +describe('AWS - CloudWatch Event: Multiple events with multiple functions', () => { let stackName; let instanceId; diff --git a/tests/integration/aws/cloud-watch-event/multiple-events-single-function/tests.js b/tests/integration/aws/cloud-watch-event/multiple-events-single-function/tests.js index 9222d39b9..c6e4722eb 100644 --- a/tests/integration/aws/cloud-watch-event/multiple-events-single-function/tests.js +++ b/tests/integration/aws/cloud-watch-event/multiple-events-single-function/tests.js @@ -10,7 +10,7 @@ const Utils = require('../../../../utils/index'); const CF = new AWS.CloudFormation({ region: 'us-east-1' }); BbPromise.promisifyAll(CF, { suffix: 'Promised' }); -describe('AWS - CloudWathEvent: multiple events with single function', () => { +describe('AWS - CloudWatch Event: Multiple events with single function', () => { let stackName; let instanceId; diff --git a/tests/integration/aws/cloud-watch-event/single-event-multiple-functions/tests.js b/tests/integration/aws/cloud-watch-event/single-event-multiple-functions/tests.js index 8796849c3..bb40507ee 100644 --- a/tests/integration/aws/cloud-watch-event/single-event-multiple-functions/tests.js +++ b/tests/integration/aws/cloud-watch-event/single-event-multiple-functions/tests.js @@ -10,7 +10,7 @@ const Utils = require('../../../../utils/index'); const CF = new AWS.CloudFormation({ region: 'us-east-1' }); BbPromise.promisifyAll(CF, { suffix: 'Promised' }); -describe('AWS - CloudWathEvent: Single event with multiple functions', () => { +describe('AWS - CloudWatch Event: Single event with multiple functions', () => { let stackName; let instanceId; diff --git a/tests/integration/aws/cloud-watch-event/single-event-single-function/tests.js b/tests/integration/aws/cloud-watch-event/single-event-single-function/tests.js index d22e4a54e..33fbab2b4 100644 --- a/tests/integration/aws/cloud-watch-event/single-event-single-function/tests.js +++ b/tests/integration/aws/cloud-watch-event/single-event-single-function/tests.js @@ -10,7 +10,7 @@ const Utils = require('../../../../utils/index'); const CF = new AWS.CloudFormation({ region: 'us-east-1' }); BbPromise.promisifyAll(CF, { suffix: 'Promised' }); -describe('AWS - CloudWathEvent: Single event with single function', () => { +describe('AWS - CloudWatch Event: Single event with single function', () => { let stackName; let instanceId; From 562108d66ee597988cebf18415a3a684a9886983 Mon Sep 17 00:00:00 2001 From: Philipp Muens Date: Thu, 9 Mar 2017 09:57:15 +0100 Subject: [PATCH 2/2] Update to use t2.nano instances --- .../multiple-events-multiple-functions/service/serverless.yml | 2 +- .../multiple-events-single-function/service/serverless.yml | 2 +- .../single-event-multiple-functions/service/serverless.yml | 2 +- .../single-event-single-function/service/serverless.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/integration/aws/cloud-watch-event/multiple-events-multiple-functions/service/serverless.yml b/tests/integration/aws/cloud-watch-event/multiple-events-multiple-functions/service/serverless.yml index 1a2a9ffd6..a9efd72c0 100644 --- a/tests/integration/aws/cloud-watch-event/multiple-events-multiple-functions/service/serverless.yml +++ b/tests/integration/aws/cloud-watch-event/multiple-events-multiple-functions/service/serverless.yml @@ -44,7 +44,7 @@ resources: EC2Instance: Type: AWS::EC2::Instance Properties: - InstanceType: t2.micro + InstanceType: t2.nano ImageId: ami-6869aa05 SubnetId: Ref: Subnet diff --git a/tests/integration/aws/cloud-watch-event/multiple-events-single-function/service/serverless.yml b/tests/integration/aws/cloud-watch-event/multiple-events-single-function/service/serverless.yml index af93b65ba..565be56ae 100644 --- a/tests/integration/aws/cloud-watch-event/multiple-events-single-function/service/serverless.yml +++ b/tests/integration/aws/cloud-watch-event/multiple-events-single-function/service/serverless.yml @@ -27,7 +27,7 @@ resources: EC2Instance: Type: AWS::EC2::Instance Properties: - InstanceType: t2.micro + InstanceType: t2.nano ImageId: ami-6869aa05 SubnetId: Ref: Subnet diff --git a/tests/integration/aws/cloud-watch-event/single-event-multiple-functions/service/serverless.yml b/tests/integration/aws/cloud-watch-event/single-event-multiple-functions/service/serverless.yml index 4ace77621..c7d7e4f1e 100644 --- a/tests/integration/aws/cloud-watch-event/single-event-multiple-functions/service/serverless.yml +++ b/tests/integration/aws/cloud-watch-event/single-event-multiple-functions/service/serverless.yml @@ -30,7 +30,7 @@ resources: EC2Instance: Type: AWS::EC2::Instance Properties: - InstanceType: t2.micro + InstanceType: t2.nano ImageId: ami-6869aa05 SubnetId: Ref: Subnet diff --git a/tests/integration/aws/cloud-watch-event/single-event-single-function/service/serverless.yml b/tests/integration/aws/cloud-watch-event/single-event-single-function/service/serverless.yml index 7fb660946..5423d51e6 100644 --- a/tests/integration/aws/cloud-watch-event/single-event-single-function/service/serverless.yml +++ b/tests/integration/aws/cloud-watch-event/single-event-single-function/service/serverless.yml @@ -20,7 +20,7 @@ resources: EC2Instance: Type: AWS::EC2::Instance Properties: - InstanceType: t2.micro + InstanceType: t2.nano ImageId: ami-6869aa05 SubnetId: Ref: Subnet