Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ahammond committed Mar 26, 2024
1 parent e0ffbc1 commit 143a485
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import { Metric } from '../../../aws-cloudwatch';
import * as ec2 from '../../../aws-ec2';
import * as cdk from '../../../core';
import { SecretValue } from '../../../core';
import * as cxapi from '../../../cx-api';
import * as elbv2 from '../../lib';
import { FakeSelfRegisteringTarget } from '../helpers';
import * as cxapi from '../../../cx-api';

describe('tests', () => {
test('Listener guesses protocol from port', () => {
Expand Down Expand Up @@ -1687,7 +1687,7 @@ describe('tests', () => {
test('compatibility mode for addAction', () => {
// GIVEN
const context = { [cxapi.ENABLE_ALBV2_EXTERNALAPPLICATIONLISTENER_ADDTARGETGROUP_TO_ADDACTION_MIGRATION]: true };
const app = new cdk.App({context});
const app = new cdk.App({ context });
const stack = new cdk.Stack(app, 'stack', {
env: {
account: '123456789012',
Expand Down Expand Up @@ -1718,7 +1718,7 @@ describe('tests', () => {
test('consistent', () => {
// GIVEN
const context = { [cxapi.ENABLE_ALBV2_EXTERNALAPPLICATIONLISTENER_ADDTARGETGROUP_CONSISTENT_LOGICALID]: true };
const app = new cdk.App({context});
const app = new cdk.App({ context });
const stack = new cdk.Stack(app, 'stack', {
env: {
account: '123456789012',
Expand Down

0 comments on commit 143a485

Please sign in to comment.