Skip to content

Commit

Permalink
fix nits
Browse files Browse the repository at this point in the history
  • Loading branch information
shikha372 committed Sep 11, 2024
1 parent 4b4fb6b commit 753273f
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 32 deletions.
18 changes: 9 additions & 9 deletions packages/@aws-cdk/aws-ec2-alpha/test/integ.ipam.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
// /*
// * Our integration tests act as snapshot tests to make sure the rendered template is stable.
// * If any changes to the result are required,
// * you need to perform an actual CloudFormation deployment of this application,
// * and, if it is successful, a new snapshot will be written out.
// *
// * For more information on CDK integ tests,
// * see the main CONTRIBUTING.md file.
// */
/*
* Our integration tests act as snapshot tests to make sure the rendered template is stable.
* If any changes to the result are required,
* you need to perform an actual CloudFormation deployment of this application,
* and, if it is successful, a new snapshot will be written out.
*
* For more information on CDK integ tests,
* see the main CONTRIBUTING.md file.
*/

import * as vpc_v2 from '../lib/vpc-v2';
import { AddressFamily, AwsServiceName, IpCidr, Ipam, IpamPoolPublicIpSource, SubnetV2 } from '../lib';
Expand Down
22 changes: 9 additions & 13 deletions packages/@aws-cdk/aws-ec2-alpha/test/integ.route-v2.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
// /*
// * Our integration tests act as snapshot tests to make sure the rendered template is stable.
// * If any changes to the result are required,
// * you need to perform an actual CloudFormation deployment of this application,
// * and, if it is successful, a new snapshot will be written out.
// *
// * For more information on CDK integ tests,
// * see the main CONTRIBUTING.md file.
// */
/*
* Our integration tests act as snapshot tests to make sure the rendered template is stable.
* If any changes to the result are required,
* you need to perform an actual CloudFormation deployment of this application,
* and, if it is successful, a new snapshot will be written out.
*
* For more information on CDK integ tests,
* see the main CONTRIBUTING.md file.
*/

import * as vpc_v2 from '../lib/vpc-v2';
import { IntegTest } from '@aws-cdk/integ-tests-alpha';
Expand All @@ -16,10 +16,6 @@ import { EgressOnlyInternetGateway, InternetGateway, NatConnectivityType, NatGat
import { GatewayVpcEndpoint, GatewayVpcEndpointAwsService, SubnetType, VpnConnectionType } from 'aws-cdk-lib/aws-ec2';
import { Fn } from 'aws-cdk-lib';

// as in unit tests, we use a qualified import,
// not bring in individual classes
//import * as er from '../lib';

const app = new cdk.App();

const stacks: {[id: string] : cdk.Stack} = {
Expand Down
18 changes: 9 additions & 9 deletions packages/@aws-cdk/aws-ec2-alpha/test/integ.vpc-v2-alpha.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
// /*
// * Our integration tests act as snapshot tests to make sure the rendered template is stable.
// * If any changes to the result are required,
// * you need to perform an actual CloudFormation deployment of this application,
// * and, if it is successful, a new snapshot will be written out.
// *
// * For more information on CDK integ tests,
// * see the main CONTRIBUTING.md file.
// */
/*
* Our integration tests act as snapshot tests to make sure the rendered template is stable.
* If any changes to the result are required,
* you need to perform an actual CloudFormation deployment of this application,
* and, if it is successful, a new snapshot will be written out.
*
* For more information on CDK integ tests,
* see the main CONTRIBUTING.md file.
*/

import * as vpc_v2 from '../lib/vpc-v2';
import { IntegTest } from '@aws-cdk/integ-tests-alpha';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import * as vpc from '../lib/vpc-v2';
import { IpCidr, SubnetV2 } from '../lib/subnet-v2';
import * as route from '../lib/route';
import { CfnEIP, SubnetType, VpnConnectionType } from 'aws-cdk-lib/aws-ec2';
/* eslint-disable no-console */

describe('Vpc V2 with full control', () => {
let stack: cdk.Stack;
Expand Down

0 comments on commit 753273f

Please sign in to comment.