File tree 2 files changed +2
-2
lines changed
packages/aws-cdk/lib/init-templates/app/java/src
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 7
7
import software .amazon .awscdk .services .iam .UserProps ;
8
8
import software .amazon .awscdk .services .sns .Topic ;
9
9
import software .amazon .awscdk .services .sns .TopicProps ;
10
- import software .amazon .awscdk .services .sns .Subscriptions .SqsSubscription ;
10
+ import software .amazon .awscdk .services .sns .subscriptions .SqsSubscription ;
11
11
import software .amazon .awscdk .services .sqs .Queue ;
12
12
import software .amazon .awscdk .services .sqs .QueueProps ;
13
13
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ public void testStack() throws IOException {
21
21
22
22
// synthesize the stack to a CloudFormation template and compare against
23
23
// a checked-in JSON file.
24
- JsonNode actual = JSON .valueToTree (app .run ().getStack (stack .getName ()).getTemplate ());
24
+ JsonNode actual = JSON .valueToTree (app .run ().getStack (stack .getStackName ()).getTemplate ());
25
25
JsonNode expected = JSON .readTree (getClass ().getResource ("expected.cfn.json" ));
26
26
assertEquals (expected , actual );
27
27
}
You can’t perform that action at this time.
0 commit comments