Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sundersc committed Sep 20, 2023
1 parent 7d883bc commit 3be148e
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 14 deletions.
6 changes: 4 additions & 2 deletions packages/amplify-e2e-tests/src/__tests__/rds-model-v2.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,8 @@ describe('RDS Model Directive', () => {
ipAddresses.push(await getIpAddress(AWSCHECKIP_URL));

await Promise.all(
ipAddresses.map((ip) => addRDSPortInboundRule({
ipAddresses.map((ip) =>
addRDSPortInboundRule({
region,
port: db.port,
cidrIp: ip,
Expand All @@ -175,7 +176,8 @@ describe('RDS Model Directive', () => {
dbAdapter.cleanup();

await Promise.all(
ipAddresses.map((ip) => removeRDSPortInboundRule({
ipAddresses.map((ip) =>
removeRDSPortInboundRule({
region,
port,
cidrIp: ip,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ describe('RDS Relational Directives', () => {

ipAddresses.push(...(await getIpRanges()));
await Promise.all(
ipAddresses.map((ip) => addRDSPortInboundRule({
ipAddresses.map((ip) =>
addRDSPortInboundRule({
region,
port: db.port,
cidrIp: ip,
Expand All @@ -124,7 +125,8 @@ describe('RDS Relational Directives', () => {
dbAdapter.cleanup();

await Promise.all(
ipAddresses.map((ip) => removeRDSPortInboundRule({
ipAddresses.map((ip) =>
removeRDSPortInboundRule({
region,
port,
cidrIp: ip,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,8 @@ describe('RDS Relational Directives', () => {

ipAddresses.push(...(await getIpRanges()));
await Promise.all(
ipAddresses.map((ip) => addRDSPortInboundRule({
ipAddresses.map((ip) =>
addRDSPortInboundRule({
region,
port: db.port,
cidrIp: ip,
Expand Down Expand Up @@ -140,7 +141,8 @@ describe('RDS Relational Directives', () => {
dbAdapter.cleanup();

await Promise.all(
ipAddresses.map((ip) => removeRDSPortInboundRule({
ipAddresses.map((ip) =>
removeRDSPortInboundRule({
region,
port,
cidrIp: ip,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,11 @@ describe('RDS Generate Schema tests', () => {
});
port = db.port;
host = db.endpoint;

ipAddresses.push(...(await getIpRanges()));
await Promise.all(
ipAddresses.map((ip) => addRDSPortInboundRule({
ipAddresses.map((ip) =>
addRDSPortInboundRule({
region,
port: db.port,
cidrIp: ip,
Expand All @@ -120,7 +121,8 @@ describe('RDS Generate Schema tests', () => {
dbAdapter.cleanup();

await Promise.all(
ipAddresses.map((ip) => removeRDSPortInboundRule({
ipAddresses.map((ip) =>
removeRDSPortInboundRule({
region,
port,
cidrIp: ip,
Expand Down
8 changes: 5 additions & 3 deletions packages/amplify-e2e-tests/src/__tests__/rds-v2.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,11 @@ describe('RDS Tests', () => {
});
port = db.port;
host = db.endpoint;

ipAddresses.push(...(await getIpRanges()));
await Promise.all(
ipAddresses.map((ip) => addRDSPortInboundRule({
ipAddresses.map((ip) =>
addRDSPortInboundRule({
region,
port: db.port,
cidrIp: ip,
Expand All @@ -97,7 +98,8 @@ describe('RDS Tests', () => {
dbAdapter.cleanup();

await Promise.all(
ipAddresses.map((ip) => removeRDSPortInboundRule({
ipAddresses.map((ip) =>
removeRDSPortInboundRule({
region,
port,
cidrIp: ip,
Expand Down
5 changes: 3 additions & 2 deletions packages/amplify-graphql-api-construct/.jsii
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"@aws-amplify/graphql-predictions-transformer": "2.1.2",
"@aws-amplify/graphql-relational-transformer": "2.1.3",
"@aws-amplify/graphql-searchable-transformer": "2.1.3",
"@aws-amplify/graphql-sql-transformer": "0.0.1",
"@aws-amplify/graphql-transformer": "1.1.4",
"@aws-amplify/graphql-transformer-core": "2.1.2",
"@aws-amplify/graphql-transformer-interfaces": "3.1.2",
Expand Down Expand Up @@ -3485,7 +3486,7 @@
"stability": "experimental"
},
"homepage": "https://github.com/aws-amplify/amplify-category-api.git",
"jsiiVersion": "5.1.12 (build 0675712)",
"jsiiVersion": "5.2.8 (build 02112e0)",
"keywords": [
"awscdk",
"aws-cdk",
Expand Down Expand Up @@ -5921,5 +5922,5 @@
}
},
"version": "0.7.1",
"fingerprint": "rnVnRctVunT3HBi6uLvAFvVV8Azp6D2+rZhcBk0HHNk="
"fingerprint": "e1AB/QmWzVAqhYg23J3Fbe3+8z5EKXjE1C7rWjkPHJs="
}

0 comments on commit 3be148e

Please sign in to comment.