Skip to content

Commit

Permalink
fix: remove unwanted import
Browse files Browse the repository at this point in the history
  • Loading branch information
cvrajeesh committed Nov 29, 2020
1 parent e21f33c commit 0df9eb0
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions packages/@aws-cdk/aws-codebuild/test/test.project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import * as secretsmanager from '@aws-cdk/aws-secretsmanager';
import * as cdk from '@aws-cdk/core';
import { Test } from 'nodeunit';
import * as codebuild from '../lib';
import { BuildEnvironmentVariableType } from '../lib';

/* eslint-disable quote-props */

Expand Down Expand Up @@ -756,7 +755,7 @@ export = {
},
environmentVariables: {
'ENV_VAR1': {
type: BuildEnvironmentVariableType.PARAMETER_STORE,
type: codebuild.BuildEnvironmentVariableType.PARAMETER_STORE,
value: '/params/param1',
},
},
Expand Down Expand Up @@ -792,11 +791,11 @@ export = {
},
environmentVariables: {
'ENV_VAR1': {
type: BuildEnvironmentVariableType.PARAMETER_STORE,
type: codebuild.BuildEnvironmentVariableType.PARAMETER_STORE,
value: '/params/param1',
},
'ENV_VAR2': {
type: BuildEnvironmentVariableType.PARAMETER_STORE,
type: codebuild.BuildEnvironmentVariableType.PARAMETER_STORE,
value: '/params/param2',
},
},
Expand Down Expand Up @@ -872,7 +871,7 @@ export = {
},
environmentVariables: {
'ENV_VAR1': {
type: BuildEnvironmentVariableType.PLAINTEXT,
type: codebuild.BuildEnvironmentVariableType.PLAINTEXT,
value: 'var1-value',
},
},
Expand Down

0 comments on commit 0df9eb0

Please sign in to comment.